<el-tree
						ref="treeRef"
						:data="nameList"
						:props="defaultProps"
						show-checkbox
						:default-expand-all="false"
						v-if="contro"
					/>
<script lang="ts">
import { defineComponent, reactive, toRefs, watch, ref, Ref } from 'vue';

	setup(props, { emit }) {
		const treeRef: Ref = ref(null);
function dataDetermination() {
			let nameListHandle: Array<any> = treeRef.value.getCheckedNodes();
return {
			treeRef,
			...toRefs(state),
Logo

前往低代码交流专区

更多推荐