Vue3框架使用报错以及解决方案
作者:Mr_Debugger
Vue3框架使用报错及解决
1、TypeError: Failed to fetch dynamically imported module:
引入组件时,没有添加.vue后缀 或者引入的组建没有被使用
2、SyntaxError: The requested module '/node_modules/_schart.js@3.0.4@schart.js/lib/sChart.min.js?v=0343bb8c' does not provide an export named 'default'
版本问题
3、cnpm安装element-plus报错
4、yarn add element-plus --save报错
5、把项目停止运行之后重新安装ok了
6、vite.config.ts Cannot find module 'path' or its corresponding type declarations
npm install @types/node --save-dev
7、vue.config.ts import path from 'path' 配置报错
Module '"path"' can only be default-imported using the 'allowSyntheticDefaultImports' flag
import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import { resolve } from 'path' export default defineConfig({ plugins: [vue()], resolve: { // 配置别名 alias: { "@": resolve(__dirname, "src"), "@c": resolve(__dirname, "src/components"), } } })
8、vue3+element-plus里面的el-submenu组件显示问题
el-submenu,但是显示出了问题,不能正常显示。
感觉是这个组件的问题,查了一圈没找到解决方法,最后看官方文档发现el-submenu变成了el-sub-menu
VUE3+Echarts报错Cannot read property ‘type‘ of undefined
最近在做Echarts项目的时候,在组件引用的时候出现了一点小问题
左下角的组件应用之后,控制台报错且连带着右侧两个能正常运行的组件失效了。
查阅资料,发现可能是“商家销售统计”的组件在数据读取是响应式的原因,在响应代码中加上
import { markRaw } from '@vue/reactivity';
在图表初始化的引用中加上markRaw()
initChart() { this.chartInstance = markRaw(echarts.init(this.$refs.rank_ref, this.theme)) //对图表初始化配置进行控制 const initOption = { },
问题解决
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。