mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
33 lines
424 B
Vue
33 lines
424 B
Vue
|
<template>
|
||
|
<div
|
||
|
ref="doc"
|
||
|
class="n-doc"
|
||
|
>
|
||
|
<div class="n-doc-header">
|
||
|
<n-gradient-text :font-size="20">
|
||
|
DatePickerDebug
|
||
|
</n-gradient-text>
|
||
|
</div>
|
||
|
<div class="n-doc-body">
|
||
|
<range />
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import range from './range.demo.vue'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
range
|
||
|
},
|
||
|
data () {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
}
|
||
|
}
|
||
|
</script>
|