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
678 B
36 lines
678 B
<template>
|
|
<demo-sort :cols="1">
|
|
<basic />
|
|
<breadcrumb />
|
|
<actions />
|
|
<context />
|
|
<responsive />
|
|
<ghost />
|
|
</demo-sort>
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import Basic from './basic.vue';
|
|
import Breadcrumb from './breadcrumb.vue';
|
|
import Actions from './actions.vue';
|
|
import Context from './content.vue';
|
|
import Responsive from './responsive.vue';
|
|
import Ghost from './ghost.vue';
|
|
|
|
import CN from '../index.zh-CN.md';
|
|
import US from '../index.en-US.md';
|
|
|
|
export default defineComponent({
|
|
CN,
|
|
US,
|
|
components: {
|
|
Basic,
|
|
Breadcrumb,
|
|
Actions,
|
|
Context,
|
|
Responsive,
|
|
Ghost,
|
|
},
|
|
});
|
|
</script>
|