feat: 标准库

This commit is contained in:
super_liu
2021-07-15 09:09:50 +08:00
parent 4b4c7b7da8
commit 3f3dd1ea35
7 changed files with 958 additions and 147 deletions
+3 -9
View File
@@ -92,17 +92,11 @@
}
},
width: {
type: Number,
type: String,
default () {
return 593;
return "";
}
},
height: {
type: Number,
default () {
return 300;
}
}
},
data () {
return {
@@ -110,7 +104,7 @@
isShowSelect: false, // 是否显示树状选择器
options: [],
selectedData: [], // 选中的节点
style: 'width:' + this.width + 'px;' + 'height:' + this.height + 'px;',
style: 'width:' + this.width + 'px;' + 'height:100%;',
selectStyle: 'width:100%;',
checkedIds: [],
checkedData: []