Files
catchAdmin/resources/admin/components/catchForm/components/Password/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: 'password',
component: h(ElInput, { type: 'password', showWordLimit: true, autocomplete: 'off' }),
type: 'basic'
}