13 lines
133 B
Vue
13 lines
133 B
Vue
|
<script setup>
|
||
|
import { RouterView } from 'vue-router'
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<RouterView />
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|