<template>
<div>
<h1>{{ msg }}</h1>
</div>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue';
export default defineComponent({
name: 'App',
setup() {
const msg = ref('Hello, Vite + TypeScript + Vue 3!');
return { msg };
}
});
</script>
<style>
/* 在这里写入你的样式 */
</style>
这个Vue组件使用了Vue 3的Composition API,通过<script lang="ts">
指定了TypeScript作为脚本语言。它展示了如何使用ref
来创建响应式数据,并在模板中展示出来。这个例子是学习如何开始一个使用Vite、TypeScript和Vue 3的项目的好起点。