tiny-vue/examples/docs/resources/pc/demo/date-picker/disabled.vue

19 lines
284 B
Vue

<template>
<tiny-date-picker v-model="value" disabled></tiny-date-picker>
</template>
<script lang="jsx">
import { DatePicker } from '@opentiny/vue'
export default {
components: {
TinyDatePicker: DatePicker
},
data() {
return {
value: ''
}
}
}
</script>