大致的意思就是 script setup 不能使用ES模块导出
其实问题就出在,给官方给出的方法混用了
一种是:<script>
标签里面配置 setup
另一种是:export default
类里配置 setup()
方法文章来源:https://www.toymoban.com/news/detail-467819.html
两者用一种就行了文章来源地址https://www.toymoban.com/news/detail-467819.html
第一种
<script setup> import {useStore} from "../stores/store.js"; const store = useStore(); </script>
第二种
<script> import { defineComponent } from 'vue' import {useStore} from "../stores/store.js"; export default defineComponent({ setup() { const store = useStore(); return { store, } } }) </script>
到了这里,关于关于 vue3运行报错Internal server error: [@vue/compiler-sfc] <script setup> cannot contain ES 的处理方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!