0

我正在尝试使用 Typescript 设置一个 Vue3 项目。
我收到错误消息:"File '/home/.../src/App.vue.ts' is not a module"

在 中使用 Javascript 时main.js,它可以正常工作,但是在将其重命名为 时main.ts,我无法导入“.vue”文件。
主要.ts:

import { createApp } from 'vue';
import App from './App.vue';
import router from './router';

createApp(App).use(router).mount('#app');

现在,运行时yarn serve,输出显示:

ERROR in src/main.ts:2:17
TS2306: File '/home/.../src/App.vue.ts' is not a module.
    1 | import { createApp } from 'vue';
  > 2 | import App from './App.vue';
      |                 ^^^^^^^^^^^
    3 | import router from './router';

让 Typescript 理解.vue-files 的方法是什么?

4

1 回答 1

1

事实证明,我应该在我的App.vue文件中添加“export default {}”。

原始(错误)App.vue:

<template>
  <router-view></router-view>
</template>

<script lang="ts">
console.log('Loading App.vue');
</script>

我通过添加“export default {};”修复了错误。
新的 App.vue:

<template>
  <router-view></router-view>
</template>

<script lang="ts">
console.log('Loading App.vue');

export default {}; // <-- added this line to fix the error
</script>
于 2021-03-26T13:10:37.287 回答