11 lines
190 B
Vue
11 lines
190 B
Vue
<template>
|
|
<UiLayout>
|
|
<RouterView />
|
|
</UiLayout>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import UiLayout from './layout/UiLayout.vue'
|
|
import { RouterView } from 'vue-router'
|
|
</script>
|