haibo-ui
v0.5.1
Published
A Component Library for Vue.js.
Readme
更新日志
*v0.5.1 更新readme
v0.5.0 新组件
toggle-select 组件 支持左右循环切换
| 参数 | 说明 | 默认值| 类型 | |---------- |-------------- |---------- |-------------------------------- | | list | 列表 | 空数组 | array | | activeIndex|当前选中项| 0 | Number | | simple | 简约风格 (无边框背景等)| false |Boolen| | verticalDirection |是否垂直排列 |false |Boolen | | circle | 是否循环选中 | false | Boolen | | iconLeft | 自定义左侧按钮 | el-icon-caret-left | string | | iconRight| 自定义右侧按钮 | el-icon-caret-right |string |
示例配置
list:{
type: Array,
default(){
return []
}
},
activeIndex:{
type: Number,
default: 0
},
simple:{
type: Boolean,
default: false
},
verticalDirection:{
type: Boolean,
default: false
},
circle:{
type: Boolean,
default: false
},
iconLeft:{
type: String,
default:'el-icon-caret-left'
},
iconRight:{
type: String,
default:'el-icon-caret-right'
}v0.4.4 修改readme.md
v0.4.3
新组件
magnify 组件 支持图片放大
v0.4.2 新特性 table updateFilters 扩充column属性,获取过滤列
v0.4.1
新特性
autocomplete sugestions 列表扩展插槽
<slot name="prefix"></slot>
<slot name="suffix"></slot>v0.4.0
新主题
添加简约风格主题(theme-light)
Install
npm install haibo-ui --saveQuick Start
import Vue from 'vue'
import HaiboUI from 'haibo-ui'
Vue.use(HaiboUI)
## Browser Support
Modern browsers and Internet Explorer 10+.