cube-ui
Version:
A fantastic mobile ui lib implement by Vue
20 lines (17 loc) • 427 B
TypeScript
import { CubeUIComponent } from '../component'
interface IIndicator {
remain?: boolean
negative?: boolean
}
export declare class CubeTextarea extends CubeUIComponent {
value?: string
disabled?: boolean
readonly?: boolean
maxlength?: number
placeholder?: string
autofocus?: boolean
indicator?: boolean | IIndicator
autoExpand: boolean
focus?: (e?: FocusEvent) => void
blur?: (e?: FocusEvent) => void
}