We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4a83b2 commit cd108a2Copy full SHA for cd108a2
src/views/FormEditor/FormItemAsset.vue
@@ -34,7 +34,8 @@ import draggable from "vuedraggable";
34
const defaultProps = {
35
label: "",
36
value: "",
37
- required: ""
+ required: "",
38
+ type:''
39
};
40
export default {
41
components: {
src/views/FormEditor/opt.js
@@ -24,3 +24,18 @@ export const input_type_opts = [
24
label: '开关 Switch'
25
}
26
]
27
+
28
+export const value_type_opts = [
29
+ {
30
+ value: 'url',
31
+ label: '链接'
32
+ },
33
+ value: 'date',
+ label: '时间'
+ value: 'array',
+ label: '数组'
+ }
+]
0 commit comments