9 lines
129 B
Vue
9 lines
129 B
Vue
|
<script setup lang="ts">
|
||
|
import { RouterLink, RouterView } from 'vue-router'
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<RouterView />
|
||
|
</template>
|
||
|
|