2024-11-02 18:16:32 +00:00
|
|
|
<template>
|
|
|
|
<RouterView />
|
|
|
|
</template>
|
|
|
|
|
2024-11-02 18:41:13 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import { RouterView } from 'vue-router'
|
2024-11-02 18:16:32 +00:00
|
|
|
|
2024-11-02 18:41:13 +00:00
|
|
|
export default {
|
|
|
|
components: {
|
2024-11-02 21:43:27 +00:00
|
|
|
RouterView,
|
|
|
|
},
|
2024-11-02 18:16:32 +00:00
|
|
|
}
|
2024-11-02 18:41:13 +00:00
|
|
|
</script>
|