10 lines
203 B
Vue
10 lines
203 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router'
|
|
import KsAppShell from './shared/shell/KsAppShell.vue'
|
|
</script>
|
|
<template>
|
|
<KsAppShell>
|
|
<RouterView />
|
|
</KsAppShell>
|
|
</template>
|