You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
639 B
36 lines
639 B
<template>
|
|
<basic />
|
|
<complex />
|
|
<active />
|
|
<children />
|
|
<list />
|
|
<elementVue />
|
|
</template>
|
|
<script lang="ts">
|
|
import Basic from './basic.vue';
|
|
import Complex from './complex.vue';
|
|
import Active from './active.vue';
|
|
import Children from './children.vue';
|
|
import List from './list.vue';
|
|
import elementVue from './element.vue';
|
|
import CN from '../index.zh-CN.md';
|
|
import US from '../index.en-US.md';
|
|
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
CN,
|
|
US,
|
|
components: {
|
|
Basic,
|
|
Complex,
|
|
Active,
|
|
List,
|
|
Children,
|
|
elementVue,
|
|
},
|
|
setup() {
|
|
return {};
|
|
},
|
|
});
|
|
</script>
|