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.
53 lines
1.1 KiB
53 lines
1.1 KiB
<template>
|
|
<demo-sort :cols="1">
|
|
<basic />
|
|
<gutter />
|
|
<offset />
|
|
<sort />
|
|
<flex />
|
|
<flex-align />
|
|
<flex-order />
|
|
<flex-stretch />
|
|
<responsive />
|
|
<ResponsiveMore />
|
|
<playfround />
|
|
<UseBreakpoint />
|
|
</demo-sort>
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import Basic from './basic.vue';
|
|
import FlexAlign from './flex-align.vue';
|
|
import FlexOrder from './flex-order.vue';
|
|
import FlexStretch from './flex-stretch.vue';
|
|
import Flex from './flex.vue';
|
|
import Gutter from './gutter.vue';
|
|
import Offset from './offset.vue';
|
|
import ResponsiveMore from './responsive-more.vue';
|
|
import Responsive from './responsive.vue';
|
|
import Sort from './sort.vue';
|
|
import Playfround from './playfround.vue';
|
|
import UseBreakpoint from './use-breakpoint.vue';
|
|
import CN from '../index.zh-CN.md';
|
|
import US from '../index.en-US.md';
|
|
|
|
export default defineComponent({
|
|
CN,
|
|
US,
|
|
components: {
|
|
Basic,
|
|
FlexAlign,
|
|
FlexOrder,
|
|
FlexStretch,
|
|
Flex,
|
|
Gutter,
|
|
Offset,
|
|
ResponsiveMore,
|
|
Responsive,
|
|
Sort,
|
|
Playfround,
|
|
UseBreakpoint,
|
|
},
|
|
});
|
|
</script>
|