Add a code

This commit is contained in:
KUN1007 2023-04-25 23:03:33 +08:00
parent 98b4b52b7f
commit b5a96949b0
3 changed files with 26 additions and 2 deletions

View file

@ -1,8 +1,10 @@
<!-- App --> <!-- App -->
<script setup lang="ts"></script> <script setup lang="ts">
import KUNGalgameMain from './layout/KUNGalgameMain.vue';
</script>
<template> <template>
<router-view /> <KUNGalgameMain/>
</template> </template>
<style scoped></style> <style scoped></style>

11
src/layout/Home/index.vue Normal file
View file

@ -0,0 +1,11 @@
<script setup lang='ts'>
</script>
<template>
</template>
<style scoped>
</style>

View file

@ -0,0 +1,11 @@
<script setup lang='ts'>
</script>
<template>
<router-view />
</template>
<style scoped>
</style>