微前端架构如何改变企业的开发模式与效率提升
898
2022-11-01
vue-manager:一个以Vue2.0为框架,结合 iView 和 ECharts 的后台组件
安装
install node / npm(cnpm)git clone "https://github.com/luosijie/vue-manager"cnpm installnpm run devvisit localhost:8080
依赖
Vue2.0iViewECharts
全局样式
你可以通过修改less文件 theme/index.less 来自定义全局样式
组件使用
组件列表
例子
vm-progress
属性 | 描述 | 类型 | 默认 |
---|---|---|---|
title | 自定义标题 | String | Progress |
data | 显示的结构化数据 | Array | 详见属性 |
属性
props: { title: { type: String, default: 'Progress' }, data: { type: Array, default: function () { return [ { name: 'JesseLuo', tags: ['hansome', 'cool'], value: 100 } ] } } }
应用
vm-timeline
属性 | 描述 | 类型 | 默认 |
---|---|---|---|
title | 自定义标题 | String | 时间轴 |
data | 显示的结构化数据 | Array | 详见属性 |
属性
props: { title: { type: String, default: '时间轴' }, data: { type: Array, default: function () { return [ { date: '2017年6月26日', time: '11:58 am', content: '完成VmManager时间轴组件' } ] } } }
应用
vm-chart-bar-line
属性 | 描述 | 类型 | 默认 |
---|---|---|---|
title | 自定义标题 | String | 时间轴 |
height | 图表高度 | Number | 400 |
color | 图表渲染颜色,依次从颜色数组中提取 | Array | 详见属性 |
bgColor | 图表背景色 | String | #fff |
xAxisData | 横坐标的值 | Array | 详见属性 |
series | 纵坐标的值 | Array | 详见属性 |
属性
props: { // 图表区域高度 title: { type: String, default: '柱形图' }, height: { type: Number, default: 400 }, // 图表形状颜色, ecahrt依次选择颜色渲染 color: { type: Array, default: function () { return chartTheme.color } }, // 背景颜色 bgColor: { type: String, default: '#fff' }, // 横坐标数据 xAxisData: { type: Array, required: true, default: function () { return ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子'] } }, // 纵坐标数据 series: { type: Array, required: true, default: function () { return [{ name: '销量', type: 'bar', data: [5, 20, 36, 10, 10, 20] }] } } }
应用
vm-table
属性 | 描述 | 类型 | 默认 |
---|---|---|---|
title | 自定义标题 | String | Basic Table |
type | 可编辑和不可编辑,不可编辑值为 edit | String | null |
columns | 表格列的配置描述 | Array | [] |
data | 显示的结构化数据 | Array | [] |
属性
props: { title: { type: String, default: 'Basic Table' }, type: String, columns: Array, data: Array }
事件 编辑模式下可用
事件名 | 描述 | 返回值 |
---|---|---|
edit-ok | 编辑完成后触发 | 编辑表单的数据 |
add-ok | 添加完成后触发 | 添加表单的数据 |
delete-ok | 删除完成后触发 | 删除的数据集合 |
应用
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~