9 lines
208 B
TypeScript
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'
|
|
}
|