![]() |
||
---|---|---|
.. | ||
demos/js-demo | ||
scripts | ||
src | ||
README.md | ||
package.json | ||
tsconfig.json |
README.md
Input
Generally used to input information and submit it to the server.
Import
import '@omiu/input'
Or use script tag to ref it.
<script src="https://unpkg.com/@omiu/input"></script>
Usage
<o-input></o-input>
API
Props
{
value?: string
disabled?: boolean
type?: string
placeholder?: string
clearable?: boolean
size?: 'medium' | 'small' | 'mini'
suffixIcon?: string
prefixIcon?: string
maxLength?: number
autoComplete?: string
block?: boolean
}
默认属性
{
type: 'text',
autosize: false,
rows: 2,
trim: false,
autoComplete: 'off',
block: false
}
Events
- blur
- focus
- change
- input