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: {
|
|
|
|
RouterView
|
2024-11-02 18:16:32 +00:00
|
|
|
}
|
|
|
|
}
|
2024-11-02 18:41:13 +00:00
|
|
|
</script>
|