1.0.7 • Published 11 months ago
@web-xhh/web-components v1.0.7
Description
web前端通用组件库(开发中)
Install
npm i @web-xhh/web-components -S
Usage
引入所有组件
import WebComponents from '@web-xhh/web-components'
app.use(WebComponents)
<XhhButton button-type="warning">按钮测试</XhhButton>
<XhhToast />
按需引入组件
import XhhButton from '@web-xhh/web-components/lib/xhh-button'
app.use(XhhButton)
<XhhButton button-type="warning">按钮测试</XhhButton>