mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-09 04:31:35 +08:00
19 lines
271 B
Vue
19 lines
271 B
Vue
<template>
|
|
<documentation-wrapper>
|
|
<en-US />
|
|
<zh-CN />
|
|
</documentation-wrapper>
|
|
</template>
|
|
|
|
<script>
|
|
import zhCN from './zhCN/index.md'
|
|
import enUS from './enUS/index.md'
|
|
|
|
export default {
|
|
components: {
|
|
'en-US': enUS,
|
|
'zh-CN': zhCN
|
|
}
|
|
}
|
|
</script>
|