tiny-vue_version0/examples/sites/demos/pc/app/date-picker/unlink-panels.vue

38 lines
681 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<p>默认启用面板联动</p>
<br />
<div class="demo-date-picker-wrap">
<tiny-date-picker v-model="value" type="daterange"></tiny-date-picker>
</div>
<br />
<p>关闭面板联动:</p>
<br />
<div class="demo-date-picker-wrap">
<tiny-date-picker v-model="value" type="daterange" unlink-panels></tiny-date-picker>
</div>
</div>
</template>
<script>
import { DatePicker } from '@opentiny/vue'
export default {
components: {
TinyDatePicker: DatePicker
},
data() {
return {
value: []
}
}
}
</script>
<style scoped lang="less">
.demo-date-picker-wrap {
width: 280px;
}
</style>