14 lines
167 B
Vue
14 lines
167 B
Vue
<template>
|
|
<RouterView />
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { RouterView } from 'vue-router'
|
|
|
|
export default {
|
|
components: {
|
|
RouterView,
|
|
},
|
|
}
|
|
</script>
|