@omiu/input

Generally used to input information and submit it to the server.

Usage no npm install needed!

<script type="module">
  import omiuInput from 'https://cdn.skypack.dev/@omiu/input';
</script>

README

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