mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-06 12:17:13 +08:00
25 lines
390 B
Vue
25 lines
390 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">
|
|
<basic />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import basic from './basic.demo.vue'
|
|
|
|
export default {
|
|
components: {
|
|
basic
|
|
},
|
|
data () {
|
|
return {}
|
|
},
|
|
methods: {}
|
|
}
|
|
</script>
|