u-tr.vue 513 B

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