Skip to content

Commit

Permalink
更新tree-table-vue版本,更改了个别api命名
Browse files Browse the repository at this point in the history
  • Loading branch information
zhigang.li committed Nov 21, 2018
1 parent 0f6f038 commit 3ec36b6
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 13 deletions.
38 changes: 35 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"js-cookie": "^2.2.0",
"simplemde": "^1.11.2",
"sortablejs": "^1.7.0",
"tree-table-vue": "^1.0.5",
"tree-table-vue": "^1.1.0",
"vue": "^2.5.10",
"vue-i18n": "^7.8.0",
"vue-router": "^3.0.1",
Expand Down
18 changes: 9 additions & 9 deletions src/view/components/tree-table/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
树状表格组件tree-table-vue,基于<a href="https://github.com/MisterTaki/vue-table-with-tree-grid">vue-table-with-tree-grid</a>进行开发,修复了一些bug,添加了一些新属性
<p><b>支持使用slot-scope进行自定义列渲染内容</b></p>
<p>文档请看<a href="https://github.com/lison16/tree-table-vue">https://github.com/lison16/tree-table-vue</a></p>
<tree-table expand-key="sex" :expand-type="false" :selection-type="false" :columns="columns" :data="data" >
<tree-table expand-key="sex" :expand-type="false" :selectable="false" :columns="columns" :data="data" >
<template slot="likes" slot-scope="scope">
<Button @click="handle(scope)">123</Button>
</template>
Expand All @@ -20,22 +20,22 @@ export default {
return {
columns: [
{
label: 'name',
prop: 'name',
title: 'name',
key: 'name',
width: '400px'
},
{
label: 'sex',
prop: 'sex',
title: 'sex',
key: 'sex',
minWidth: '50px'
},
{
label: 'score',
prop: 'score'
title: 'score',
key: 'score'
},
{
label: 'likes',
prop: 'likes',
title: 'likes',
key: 'likes',
minWidth: '200px',
type: 'template',
template: 'likes'
Expand Down

0 comments on commit 3ec36b6

Please sign in to comment.