热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

【Vue】自定义树形控件

原标题:【Vue】自定义树形控件效果图:

原标题:【Vue】自定义树形控件

效果图:
在这里插入图片描述
数据结构:

tree: {
title: '', // 标www.yii666.com题(姓名)
key: '0',
head: '', // 头像
selectStatus: false, // checkBox选中状态
children: [
{
title: '旺旺一部',
key: '0-0',
head: '',
selectStatus: false,
children: [
{
key: '0-0-0',
title: '旺仔1',
head: require('@/assets/wan.jpg'),
selectStatus: false
}
]
},
{
title: '旺旺二部',
key: '0-1',
head: '',
selectStatus: false,
children: [
{
title: '旺旺二部一队',
key: '0-1-0',
head: '',
selectStatus: false,
children: [
{
title: '旺旺二部一队一班',
key: '0-1-0-2',
head: '',
selectStatus: false,
文章来源站点https://www.yii666.com/ children: [
{
title: '旺仔3',
key: '0-1-0-2-0',
head: require('@/assets/wan.jpg'),
selectStatus: false
}
]
}
]
}
]
}
]
},

思路:

/*自定义树形控件的核心就是“组件自己调用自己” 这里将树形控件封装成一个子组件*/


/*组件调用方法*/


:label="tree.title"
:headImg="tree.head"
:treeData="tree.children"
:pkid="tree.key"
:depth="0"
:selectStatus="tree.selectStatus文章来源地址49325.html"
@addSelectedData="addSelectedData"
@deleteSelectedData="deleteSelectedData" />

来源于:【Vue】自定义树形控件


推荐阅读
author-avatar
turneerpelliccia_291
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有