2023-04-14 13:58:13 +00:00
|
|
|
<script lang="ts">
|
2023-04-18 08:04:47 +00:00
|
|
|
import KUNGalgameMainPage from "./views/Home/KUNGalgameMainPage.vue";
|
2023-04-14 13:58:13 +00:00
|
|
|
export default {
|
|
|
|
name: "App",
|
|
|
|
components: { KUNGalgameMainPage },
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<KUNGalgameMainPage />
|
|
|
|
</template>
|
|
|
|
|
2023-04-18 08:04:47 +00:00
|
|
|
<style scoped></style>
|