u-tr.vue 404 B

123456789101112131415161718192021222324252627282930
  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. </script>
  23. <style lang="scss" scoped>
  24. @import "../../libs/css/components.scss";
  25. </style>