tiny-vue/examples/docs/resources/pc/demo/time-select/editable.vue

19 lines
320 B
Vue

<template>
<tiny-time-select v-model="value" placeholder="选择时间" :editable="false"></tiny-time-select>
</template>
<script lang="jsx">
import { TimeSelect } from '@opentiny/vue'
export default {
components: {
TinyTimeSelect: TimeSelect
},
data() {
return {
value: ''
}
}
}
</script>