关于 vue3运行报错Internal server error: [@vue/compiler-sfc] <script setup> cannot contain ES 的处理方法
大致的意思就是scriptsetup不能使用ES模块导出其实问题就出在,给官方给出的方法混用了一种是:标签里面配置setup另一种是:exportdefault类里配置setup()方法两者用一种就行了第一种import{useStore}from"../stores/store.js";conststore=useStore();第二种import{defineComponent}from'vu