Test.vue 257 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 <template> <div style="padding: 20px; text-align: center;"> <h1>测试页面</h1> <p>如果您能看到这个页面,说明Vue应用正常运行</p> </div> </template> <script setup lang="ts"> console.log('测试页面加载成功') </script>