"plugin:vite:vue]""@vue/compiler-sfc" &q



按照Vuejs的设置指南,在src/views/main/index.vue

中设置以下vue
<template>
<div>
<navigation-vue></navigation-vue>
</div>
</template>
<script>
import navigationVue from './components/navigation/index.vue'
export default {
name: 'index'
}
</script>
<style lang="scss" scoped></style>

我从Vite得到以下错误:

[plugin:vite:vue] [@vue/compiler-sfc]不能包含ES模块导出。如果您使用的是以前的版本,请在https://github.com/vuejs/rfcs/pull/227查阅更新后的RFC。

如何解决这个问题谢谢!

[plugin:vite:vue] [@vue/compiler-sfc]不能包含ES模块导出. 如果您使用的是以前的版本,请在https://github.com/vuejs/rfcs/pull/227查阅更新后的RFC。

所以删除下面的代码

export default {
name: 'index'
}

然后错误消失

相关内容

  • 没有找到相关文章

最新更新