tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
22 lines (21 loc) • 375 B
JavaScript
const n = {
modelValue: String,
placeholder: String,
max: [Number, String],
rows: {
type: String,
default: () => "3"
},
cols: String,
resize: {
type: String,
default: () => "none",
validator: (e) => ["vertical", "horizontal", "none", ""].includes(e)
},
disabled: Boolean,
autofocus: Boolean,
name: String
};
export {
n as Props
};