12 lines
195 B
Vue
12 lines
195 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router'
|
|
|
|
import AppShell from './components/AppShell.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<AppShell>
|
|
<RouterView />
|
|
</AppShell>
|
|
</template>
|