Vue3+TS错误解决 Failed to fetch dynamically imported module:
Internal server error: [@vue/compiler-sfc] <script setup> cannot contain ES module exports. If you are using a previous version of <script setup>, please consult the updated RFC at https://github.com/
·
Vue3模块导出错误解决
最近开发项目中,用了vue3框架+elementPlus来开发项目,在封装form表单时,在父组件进行暴露出现一个问题。
在VSCode的报错信息如下
解决的方法有两个
<script lang="ts" setup>
去除setup<script lang="ts">
- 删除export about.
报错的原因是在<script setup>
内不支持es6的模块化
关于<script lang="ts" setup>
的用法我觉得可以去参考CocoY1对于这个Vue3语法糖的讲解,很详细!!!
更多推荐
已为社区贡献4条内容
所有评论(0)