14 lines
245 B
Vue
14 lines
245 B
Vue
<script lang="ts">
|
|
import KUNGalgameMainPage from "./views/Home/KUNGalgameMainPage.vue";
|
|
export default {
|
|
name: "App",
|
|
components: { KUNGalgameMainPage },
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<KUNGalgameMainPage />
|
|
</template>
|
|
|
|
<style scoped></style>
|