app-link.vue 480 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view @click="jump">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name:'app-link',
  9. props:{
  10. link:String,
  11. type:{
  12. type: String,
  13. default: 'to'
  14. }
  15. },
  16. methods:{
  17. jump(){
  18. this.$jump({
  19. url: this.link,
  20. type: this.type
  21. })
  22. }
  23. }
  24. }
  25. </script>