18 lines
252 B
Vue
18 lines
252 B
Vue
<script setup></script>
|
|
|
|
<template>
|
|
<div id="app">
|
|
<WindowLayout>
|
|
|
|
<RouterView></RouterView>
|
|
</WindowLayout>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import WindowLayout from './components/Layout.vue'
|
|
</script>
|
|
|
|
<style scoped></style>
|