Files
release11-tools/new-frontend/src/App.vue
2023-06-14 09:19:12 +02:00

20 lines
320 B
Vue

<script setup lang="ts">
import { onMounted, ref } from 'vue';
import { RouterView } from 'vue-router';
import XmlTool from './components/XmlTool.vue';
const activeToolBox = ref('');
onMounted(() => {
activeToolBox.value = "xml";
});
</script>
<template>
<XmlTool></XmlTool>
</template>
<style scoped></style>