@omiu/breadcrumb
v0.0.4
Published
Display the position of the current page in the system hierarchy and be able to navigate
Maintainers
Readme
Button
Click or touch it to trigger an operation. The encapsulated logic is triggered in response to user clicks.
Import
import '@omiu/button'Or use script tag to ref it.
<script src="https://unpkg.com/@omiu/button"></script>Usage
<o-button></o-button>API
Props
{
size?: 'medium' | 'small' | 'mini',
type?: 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'text'
plain?: boolean,
round?: boolean,
circle?: boolean,
loading?: boolean,
disabled?: boolean,
icon?: string,
autofocus?: boolean,
nativeType?: 'button' | 'submit' | 'reset',
block?: boolean
text?: string
}Default Props
{
plain: false,
round: false,
circle: false,
loading: false,
disabled: false,
autofocus: false,
nativeType: 'button',
block: false
}