天波h5前端应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 line
363B

  1. <template>
  2. <div @click="onClick">测试</div>
  3. </template>
  4. <script>
  5. export default {
  6. name:'',
  7. data(){
  8. return {
  9. }
  10. },
  11. methods: {
  12. onClick() {
  13. this.$router.push({
  14. name: 'packageList',
  15. query: {
  16. imei: '45555'
  17. }
  18. })
  19. }
  20. }
  21. }
  22. </script>
  23. <style scoped>
  24. </style>