10 lines
119 B
Vue
10 lines
119 B
Vue
|
<script setup lang="ts">
|
||
|
|
||
|
import { RouterView } from 'vue-router'
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<RouterView />
|
||
|
</template>
|
||
|
|