Files
catchAdmin/resources/admin/components/catchForm/components/TextArea/index.ts
2024-04-23 13:12:02 +08:00

9 lines
208 B
TypeScript

import { ElInput } from 'element-plus'
import { h } from 'vue'
export default {
name: 'textarea',
component: h(ElInput, { type: 'textarea', showWordLimit: true, autocomplete: 'off' }),
type: 'basic'
}