Files
KArtSell.Aegis/frontend/src/App.vue
T

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>