TreeSelect demo fixes

This commit is contained in:
Tuğçe Küçükoğlu 2023-07-06 17:03:51 +03:00
parent e961e48c81
commit 883b44426c
8 changed files with 51 additions and 25 deletions

View file

@ -13,6 +13,7 @@
<script>
import { NodeService } from '/service/NodeService';
export default {
data() {
return {
@ -33,6 +34,8 @@ export default {
</template>
<script>
import { NodeService } from './service/NodeService';
export default {
data() {
return {
@ -56,6 +59,7 @@ export default {
<script setup>
import { ref, onMounted } from 'vue';
import { NodeService } from './service/NodeService';
const nodes = ref(null);
const selectedValue = ref(null);