-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
Copy pathindex.vue
61 lines (60 loc) · 1.31 KB
/
index.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<template>
<demo-sort :cols="1">
<Simple />
<SmallSize />
<Icon />
<StepNext />
<Vertical />
<VerticalSmall />
<Error />
<ProgressDot />
<CustomizedProgressDot />
<Clickable />
<Nav />
<Progress />
<LabelPlacement />
<Inline />
</demo-sort>
</template>
<script lang="ts">
import CustomizedProgressDot from './customized-progress-dot.vue';
import Error from './error.vue';
import Icon from './icon.vue';
import ProgressDot from './progress-dot.vue';
import Simple from './simple.vue';
import SmallSize from './small-size.vue';
import StepNext from './step-next.vue';
import VerticalSmall from './vertical-small.vue';
import Vertical from './vertical.vue';
import Clickable from './clickable.vue';
import Progress from './progress.vue';
import LabelPlacement from './label-placement.vue';
import Inline from './inline.vue';
import Nav from './nav.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: {
Simple,
SmallSize,
Icon,
StepNext,
Vertical,
VerticalSmall,
Error,
ProgressDot,
CustomizedProgressDot,
Clickable,
Nav,
Progress,
LabelPlacement,
Inline,
},
setup() {
return {};
},
});
</script>