kun-galgame-vue/src/App.vue

13 lines
298 B
Vue
Raw Normal View History

2023-04-20 12:01:38 +00:00
<!-- App -->
2023-04-20 09:38:03 +00:00
<script setup lang="ts">
2023-04-18 08:04:47 +00:00
import KUNGalgameMainPage from "./views/Home/KUNGalgameMainPage.vue";
2023-04-20 09:38:03 +00:00
import KUNGalgameTopicPage from "./views/topic/KUNGalgameTopicPage.vue";
2023-04-14 13:58:13 +00:00
</script>
<template>
2023-04-20 09:38:03 +00:00
<!-- <KUNGalgameMainPage /> -->
<KUNGalgameTopicPage/>
2023-04-14 13:58:13 +00:00
</template>
2023-04-18 08:04:47 +00:00
<style scoped></style>