Vue自嵌套树组件使用方法详解
短信预约 -IT技能 免费直播动态提醒
本文实例为大家分享了Vue自嵌套树组件的使用方法,供大家参考,具体内容如下
效果图
注意事项
- 组件自嵌套,定义名称时就定义为组件名
- 单选和多选用户时,以最顶级父组件的属性为准,由于组件内不能同步修改prop,故采用data注册另一个同类型数值用于接收组件内改变,并使用update,同步更新到prop上
- 展开组件才开始加载用户列表
<template>
<ul v-show="isShow" ref="user-tree">
<li v-for="(item, idx) in userList" :key="idx">
<div>
<!-- 多选用户树 -->
<input
class="primary"
type="checkbox"
v-model="selectUsers1"
:value="item.userId"
v-show="isCheck"
/>
<!-- 单选用户树 -->
<span
@click="onSelect(item)"
:style="{
color: selectUser1 == item.userId ? 'red' : '',
cursor: 'pointer',
}"
>
<i class="iconfont icon-user"></i> {{ item.userName }}</span
>
<!-- 展开用户树 -->
<i
class="iconfont icon-right"
v-if="item.haveChild"
@click="expandItem(idx)"
></i>
</div>
<!-- 嵌套用户树 -->
<user-tree
:user-id="item.userId"
v-if="item.haveChild"
:is-show.sync="item.isShow"
:select-user.sync="selectUser1"
:select-users.sync="selectUsers1"
:is-check="isCheck"
></user-tree>
</li>
</ul>
</template>
<script>
export default {
name: "user-tree",//定义为组件名,否则自嵌套时报未注册自身组件错误
props: {
isShow: {//是否展开用户列表
type: Boolean,
default: false
},
userId: {//当前用户树父级id
type: Number,
default: 0
},
selectUser: {//当前选中的用户id
type: Number,
default: 0
},
selectUsers: {//多选用户
type: Array,
default: function () {
return [];
}
},
isCheck: {//是否多选功能
type: Boolean,
default: false
}
},
data: () => ({
userList: [], //用户列表
selectUser1: 1,//单选用户
selectUsers1: [],//多选用户
isLoad: true
}),
watch: {
selectUser1 () {//单选用户,当前级同步到父级
if (this.selectUser1 != this.selectUser) {
this.$emit("update:select-user", this.selectUser1);
}
},
selectUser () {//单选用户,当前级同步于父级
if (this.selectUser1 != this.selectUser) {
this.selectUser1 = this.selectUser;
}
},
selectUsers1 () {//多选用户,当前级同步到父级
if (this.selectUsers1 != this.selectUsers) {
this.$emit("update:select-users", this.selectUsers1);
}
},
selectUsers () {//多选用户,当前级同步于父级
if (this.selectUsers1 != this.selectUsers) {
this.selectUsers1 = this.selectUsers;
}
},
isShow () {
if (this.isShow) {
this.getUserList();
}
}
},
methods: {
onSelect (item) {//单选用户
this.$emit("update:select-user", item.userId);
},
expandItem (idx) {//展开用户树
if (this.userList[idx].isShow) {
this.userList[idx].isShow = false;
} else {
this.userList[idx].isShow = true;
}
},
getUserList () {
var list = [];
for (var i = 0; i < 10; i++) {
var userId = Math.round(Math.random() * 10000);
list.push({
userId: userId,
userName: "user-" + userId,
haveChild: i % 2,//是否有子树
isShow: false //是否展示子树
});
}
this.userList = list;
},
},
mounted () {
if (this.userId == 1) {//当前父级userId为根用户id,就加载并展开用户树
this.getUserList(this.userId);
}
}
};
</script>
使用树组件
<div>{{ selectUser }}</div>
<div>
<span v-for="item in selectUsers" :key="item">【{{ item }}】</span>
</div>
<user-tree
:user-id="1"
:is-show="true"
:select-user.sync="selectUser"
:select-users.sync="selectUsers"
:is-check="true"
></user-tree>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341