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.

29 lines
553 B

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