添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
刀枪不入的核桃  ·  Event update (i.e. ...·  1 周前    · 
咆哮的牛肉面  ·  SignalR Hub 在 .NET ...·  2 天前    · 
寂寞的警车  ·  VS C# ...·  8 月前    · 
风流倜傥的松球  ·  Linux awk ...·  9 月前    · 
奔放的打火机  ·  上海大学研究生院·  10 月前    · 

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement . We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account
  • I have searched through existing issues
  • I have tried restarting VS Code or running Vetur: Restart VLS
  • Platform: Windows 10 Professional Edition 20H2 x64
  • Vetur version:v0.34.1
  • VS Code version:1.59.0
  • Node.js version:14.16.0
  • Problem

    I used setup sugar in my code,then Vetur report error Module xxx has no default export

    Reproducible Case

    HelloWorld.vue

    < script lang = "ts" setup > import { ref } from 'vue' defineProps( { msg : { type : String , required : true , const count = ref(0) < / script > . . .

    Home.vue

    < script lang = "ts" > /*The following line is where error report*/ import HelloWorld from '@/components/HelloWorld.vue' < / script > . . .