12 lines
144 B
Vue
12 lines
144 B
Vue
|
<script setup>
|
||
|
import { RouterLink, RouterView } from 'vue-router'
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
|
||
|
<RouterView />
|
||
|
</template>
|
||
|
|
||
|
<style scoped></style>
|