Files
dynamicTexture/src/App.vue
2025-11-03 11:12:18 +08:00

22 lines
244 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<v-app>
<router-view />
</v-app>
</template>
<script setup lang="ts">
// 移除直接导入MainApp改用路由系统
</script>
<style>
#app {
width: 100vw;
height: 100vh;
}
* {
margin: 0;
padding: 0;
}
</style>