8 lines
131 B
Vue

<script setup lang="ts">
import { RouterLink, RouterView } from 'vue-router';
</script>
<template>
<RouterView />
</template>