linkView.vue 355 B

1234567891011121314151617181920212223242526272829303132
  1. <template name="linkView">
  2. <view>
  3. ddd
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: "linkView",
  9. props: {
  10. control : {
  11. type : Object,
  12. value : null
  13. },
  14. item : {
  15. type : Object,
  16. value : null
  17. },
  18. },
  19. methods:{
  20. start : function() {
  21. },
  22. stop : function() {
  23. }
  24. },
  25. }
  26. </script>
  27. <style>
  28. </style>