yu.ui
v2.4.6
Published
yu vue ui components project
Downloads
30
Readme
快速上手
npm 安装
npm install --save yu.ui
引入样式
方式一: 在html中引入
// 例如vue项目的根目录index.html
<link rel="stylesheet" href="https://unpkg.com/yu.ui/src/assets/yu.ui.css">
方式二: 在js中引入
// 例如vue项目的src/main.js中
import 'yu.ui/src/assets/yu.ui.css'
使用示例
// 引入yu-button组件
import { YuButton } from 'yu.ui';
export default {
components: { YuButton },
}
<!--使用yu-button组件-->
<yu-button>Hello world</yu-button>