this may cause things to work incorrectly. make sure to use the same version for both. if you are using vue-loader@>=10.0, simply update vue-template-compiler. if you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump vue-template-compiler to the latest.
时间: 2023-04-26 18:00:06 浏览: 246
这可能会导致一些问题,确保两者使用相同的版本。如果您正在使用vue-loader@>=10.,请更新vue-template-compiler。如果您正在使用vue-loader@<10.或vueify,则重新安装vue-loader/vueify应该会将vue-template-compiler升级到最新版本。
相关问题
INFO Starting development server... ERROR Error: Vue packages version mismatch: - vue@3.3.4 (E:\gongzuo\ywJxcHtVue3\ywjxcadmin\node_modules\vue\index.js) - vue-template-compiler@2.6.12 (E:\gongzuo\ywJxcHtVue3\ywjxcadmin\node_modules\vue-template-compiler\package.json) This may cause things to work incorrectly. Make sure to use the same version for both. If you are using vue-loader@>=10.0, simply update vue-template-compiler. If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump vue-template-compiler to the latest.
这是一个Vue.js的错误信息,提示你的Vue.js版本和vue-template-compiler版本不匹配。建议你检查你的项目中Vue.js和vue-template-compiler的版本是否一致,如果不一致,可以升级vue-template-compiler或重新安装vue-loader/vueify。如果你使用的是vue-loader@>=10.0,可以直接更新vue-template-compiler。
Warning MSB8012 TargetPath(C: \Users\N0581743 \Desktop\BuildEnv\HMICORE\COMMON \ Cm\cmnshr32\Release\ CMNSHR32.d11) does not match the Linker's OutputFile property value (C: )Users \N0581743 \Desktop \BuildEnv\Build\Win32\Unicode \Release\BIN\Cmnshr.dll). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile). CMNSHR32 C: \Program Files \Microsoft Visual Studio\2022 \Enterprise \MSBuildMicrosoft\VC|v170Microsoft.CppBuild.targets 1374
这个问题是一个警告信息,它告诉你编译器生成的目标文件路径与链接器的输出文件路径不匹配,可能会导致项目构建不正确。要解决这个问题,你需要确保 $(OutDir)、$(TargetName) 和 $(TargetExt) 属性值与 %(Link.OutputFile) 中指定的值匹配。你可以在项目属性中的“链接器”选项卡下修改输出文件路径,将其与编译器生成的目标文件路径匹配即可。然后重新编译项目即可。
阅读全文