gulu_zty
v0.0.3
Published
一个Vue组件库
Downloads
2
Readme
轱辘 —— 一个Vue UI 组件库
介绍
开始使用
1.添加 CSS 样式
使用本框架前,请在 CSS 中开启 border-box
*::before, * , *::after{box-sizing:border-box;}
2.安装gulu
npm install --save gulu_zty
文档
Button
<g-button btntype="warning" iconname='setting' :loading="loading3" :success="success1" icon-position="right" @click="changeloading('success',$event)"> 提交 </g-button>
btntype:Button的样式 默认样式,primary,success,warning,danger
iconname: icon的svg名字,需要用户自己引入svg文件,命名规则
i-setting
,使用时iconname = setting
,推荐使用iconfont:loading: 点击按钮是否有loading样式
loading3:true/false
:success: 点击按钮后经过loading,最后显示完成标志.
success1:true/false
,配合changeloading($event)
使用icon-positon:图标显示在字的位置
right || left
input
<g-input value = 'xxx' :disable = 'disable' :readonly = 'true' v-model = 'message' ></g-input>
支持disabled,readonly,focus,blur事件,支持双向绑定