project init & fix ui

This commit is contained in:
2023-01-06 14:24:11 +08:00
parent abc4f65a8e
commit ac9b479805
866 changed files with 39916 additions and 53 deletions

View File

@@ -0,0 +1,80 @@
const props = {
adjustPosition: {
type: Boolean,
value: true,
},
autofocus: {
type: Boolean,
value: false,
},
autosize: {
type: Boolean,
value: false,
},
confirmHold: {
type: Boolean,
value: false,
},
confirmType: {
type: String,
value: 'return',
},
cursorSpacing: {
type: Number,
value: 0,
},
customStyle: {
type: String,
value: '',
},
disabled: {
type: Boolean,
value: false,
},
externalClasses: {
type: Array,
},
focus: {
type: Boolean,
value: false,
},
label: {
type: String,
},
fixed: {
type: Boolean,
value: false,
},
maxcharacter: {
type: Number,
},
maxlength: {
type: Number,
value: -1,
},
placeholder: {
type: String,
value: undefined,
},
placeholderStyle: {
type: String,
value: '',
},
value: {
type: String,
value: null,
},
defaultValue: {
type: String,
value: '',
},
bordered: {
type: Boolean,
value: false,
},
indicator: {
type: Boolean,
value: false,
},
};
export default props;