- 添加了基础的 Vue 单文件组件结构 - 包含 script、template 和 style 三个基本区块 - template 中添加了简单的文本展示内容 - 设置了组件的样式作用域为局部生效 - 为页面引入了 TypeScript 支持
@@ -0,0 +1,13 @@
+<script setup lang="ts">
+
+</script>
+<template>
+ <view>
+ <text>Hello World</text>
+ </view>
+</template>
+<style scoped>
+</style>