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