18 lines
232 B
Vue
Raw Normal View History

2025-10-15 14:07:39 +08:00
<template>
<div id="app">
2025-11-07 17:27:41 +08:00
<Index></Index>
2025-10-15 14:07:39 +08:00
</div>
</template>
2025-11-07 17:27:41 +08:00
<script setup>
import Index from "./views/index.vue";
2025-10-15 14:07:39 +08:00
</script>
2025-11-07 17:27:41 +08:00
<style lang="scss" scoped>
2025-10-15 14:07:39 +08:00
#app {
width: 100%;
height: 100vh;
overflow: hidden;
}
</style>