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
29 lines
553 B
<template>
|
|
<picker-view-column>
|
|
<view class="u-picker-column">
|
|
|
|
</view>
|
|
</picker-view-column>
|
|
</template>
|
|
|
|
<script>
|
|
import { props } from './props';
|
|
import { mpMixin } from '../../libs/mixin/mpMixin';
|
|
import { mixin } from '../../libs/mixin/mixin';
|
|
/**
|
|
* PickerColumn
|
|
* @description
|
|
* @tutorial url
|
|
* @property {String}
|
|
* @event {Function}
|
|
* @example
|
|
*/
|
|
export default {
|
|
name: 'u-picker-column',
|
|
mixins: [mpMixin, mixin, props],
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "../../libs/css/components.scss";
|
|
</style>
|