u-tr.vue 426 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="u-tr">
  3. </view>
  4. </template>
  5. <script>
  6. import props from './props.js';
  7. /**
  8. * Tr
  9. * @description
  10. * @tutorial url
  11. * @property {String}
  12. * @event {Function}
  13. * @example
  14. */
  15. export default {
  16. name: 'u-tr',
  17. mixins: [uni.$u.mpMixin, uni.$u.mixin,props],
  18. data() {
  19. return {
  20. }
  21. }
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. @import "../../libs/css/components.scss";
  26. </style>