suchen

Heim  >  Fragen und Antworten  >  Hauptteil

View |. Modul hat keinen Standardexport

Ich habe einen Fehler in vue3, ts, vue cli festgestellt, der besagt Module '"c:/Users/USER/Documents/top-secret-project/src/components/Features/Features.vue"' 没有默认导出. Beim Importieren von Komponenten aus einer Datei Ich weiß nicht, warum diese spezielle Komponente jetzt funktioniert.

Das ist Features.vue

<script lang="ts">
import Feature from "./Feature.vue";
</script>

<template>
  <Feature />
</template>


P粉011360903P粉011360903405 Tage vor793

Antworte allen(2)Ich werde antworten

  • P粉128563140

    P粉1285631402023-10-27 07:17:28

    @Boussadjra 提到,如果在 Visual Studio Code 中安装了 Vetur 扩展,则可能会发生这种情况。 插入 Vetur 如果我们在 Visual Studio Code 中安装 Volar 扩展,这个问题就可以解决。

    Antwort
    0
  • P粉665679053

    P粉6656790532023-10-27 00:29:07

    使用脚本设置语法,无需在脚本中添加 export default,只需将 setup 属性添加到脚本中即可:

    <script lang="ts" setup>
    import Feature from "./Feature.vue";
    </script>
    
    <template>
      <Feature />
    </template>
    

    Antwort
    0
  • StornierenAntwort