Added default tool

This commit is contained in:
2023-06-13 14:37:30 +02:00
parent 5d8a816a3b
commit b9045a8013
2 changed files with 14 additions and 7 deletions

View File

@@ -1,9 +1,12 @@
<script setup lang="ts">
import { ref } from 'vue';
import { onMounted, ref } from 'vue';
import XmlTool from './components/XmlTool.vue'
const activeToolBox = ref('')
onMounted(() => {
activeToolBox.value = "xml";
});
</script>
<template>