10 lines
111 B
Vue
10 lines
111 B
Vue
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineOptions({
|
|
name: 'App'
|
|
});
|
|
</script>
|