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.

33 lines
516 B

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