20 lines
320 B
Vue
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>
|