naive-ui/demo/debug-pages/cascaderDebug/index.vue

27 lines
402 B
Vue
Raw Normal View History

2019-08-27 11:19:53 +08:00
<template>
2020-12-12 13:51:22 +08:00
<div ref="doc" class="n-doc">
2019-08-27 11:19:53 +08:00
<div class="n-doc-header">
<n-gradient-text :font-size="20">
CascaderDebug
</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 () {
2020-12-12 13:51:22 +08:00
return {}
2019-08-27 11:19:53 +08:00
},
2020-12-12 13:51:22 +08:00
methods: {}
2019-08-27 11:19:53 +08:00
}
</script>