vue排错 不能启动。
一、不报错,功能也不执行
1.注意大小写,包含方法自动带出的,vue有些插件带出来的大小写不一定正确。
Unexpected mutation of "block" prop vue/no-mutating-prop
https://www.cnblogs.com/rainbow70626/p/16459975.html
二、启动失败
使用cmd输入node -v查看版本,如果是18.+版本,请将package.json中第五行scripts中的内容替换为:
"scripts": {
"serve": " SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"build": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
}
三、打开子窗体报错
报错: Cannot read properties of undefined (reading 'open')
原因:第一次还没有渲染。
解决办法:nexttick或者settimout
this.$nextTick(() => { this.$refs.popCostListWindow.open(); });