yjui
v1.1.0
Published
yjui组件
Downloads
4
Readme
yjui
基于Vue一套UI组件
安装
$ npm install yjui -S
使用
在 main.js
文件中引入插件并注册
# main.js
import yjui from 'yjui'
Vue.use(yjui)
在项目中使用 yjui
<template>
<yj-button size="small">默认按钮</yj-button>
</template>
<script>
export default {
data () {
return {
}
}
}
</script>