u-td.vue 435 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="u-td">
  3. </view>
  4. </template>
  5. <script>
  6. import props from './props.js';
  7. /**
  8. * Td 表格中的单元格
  9. * @description
  10. * @tutorial url
  11. * @property {String | Number}
  12. * @event {Function}
  13. * @example
  14. */
  15. export default {
  16. name: 'u-td',
  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>