# vue3 中 vue 文件使用 TS

# 1. 介绍

vue-cli 创建的 vue3 + ts 项目

在 vue 文件中使用 TS

# 2. 示例

<template>
  <div>...</div>
</template>
<script lang="ts">
export default defineComponent({
  data() {
    return {
      // ...
    };
  },

  methods: {
    // ...
  }
});
</script>

# 3. 参考

本章目录