quanyawei
2024-04-22 b487b91abd2a0d769b82ddf90924f93afe9b05b3
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<template>
<a-collapse defaultActiveKey="1" :bordered="true">
    <a-collapse-panel header="基础组件" key="1">
        <a-row :gutter=8>
            <a-col :span="12">
                <a-button size="small" type="dashed" block>单行文本</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>多行文本</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>计数器</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>单选框</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>多选框</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>时间选择</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>日期选择</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>评分</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>滑块</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>下拉</a-button>
            </a-col>
        </a-row>
    </a-collapse-panel>
    <a-collapse-panel header="高级组件" key="2">
        <a-row :gutter=8>
            <a-col :span="12">
                <a-button size="small" type="dashed" block>自定义1</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>文件上传</a-button>
            </a-col>
        </a-row>
    </a-collapse-panel>
    <a-collapse-panel header="布局字段" key="3">
        <a-row :gutter=8>
            <a-col :span="12">
                <a-button size="small" type="dashed" block>栅格布局</a-button>
            </a-col>
        </a-row>
    </a-collapse-panel>
</a-collapse>
</template>
 
<style lang="less">
 
</style>
 
<script  lang="ts">
import { Component, Prop, Vue, Mixins } from 'vue-property-decorator';
import { State, Mutation, namespace } from 'vuex-class';
 
@Component({
    components: {
    },
})
export default class EditorWidget extends  Vue {
 
}
</script>