Test.vue 257 Bytes
<template>
  <div style="padding: 20px; text-align: center;">
    <h1>测试页面</h1>
    <p>如果您能看到这个页面,说明Vue应用正常运行</p>
  </div>
</template>

<script setup lang="ts">
console.log('测试页面加载成功')
</script>