logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Vue问题五:Vue报错(Property or method “XXX?“ is not defined on the instance but referenced during render.)

[Vue warn]: Property or method "animationData1" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based com

文章图片
#vue.js#前端#javascript
VUE问题2:报错 Invalid value for option “components“: expected an Object, but got Function.

原来的代码:components() {Left;Right},这个问题根据他报错的提示可以看得出来的,就是他说的是 components 想要的是对象,但是写上了一个函数给他。这里修改一下就可以了:components: {Left,Right},这是自己粗心经常弄错的一个事情,就是注册组件的时候用错了。Mark一下避免下次...

文章图片
#vue.js#typescript#前端 +1
VUE问题1:报错Error: Can‘t resolve ‘vue-editor-bridge‘解决方案

写着写着代码,run了几次之后突然报错。Error: Can't resolve 'vue-editor-bridge'并且浏览器还出现该窗口终端报错如下:这个时候跟着提示去 run 下面哪行代码也是会报错的。去找了源代码发现在 <script> 那多出来了一行import func from 'vue-editor-bridge';删掉这行代码就可以了,原理不明白。尚且还不知道 vu

文章图片
#vue.js#javascript#前端
uni-app问题二:Module build failed (from ./node_modules/@dcloudio/webpack-uni-pages-loader/

我这边报错最后是报 index.js 出错而我出错的原因是在配置uniapp路由的时候多了个逗号...如果有类似问题的不妨去 page.json 里面看看路由的配置如何。

文章图片
#vue.js#前端框架#javascript +1
uni-app问题一: Error: Cannot find module ...plugins\uniapp-cli\bin\uniapp-cli.js‘

使用HbuilderX 时,更换版本后运行内置浏览器抛出以下错误Error: Cannot find module 'D:\桌面\HBuilderX.3.4.5.20220408-alpha\HBuilderX\plugins\uniapp-cli\bin\uniapp-cli.js'然后 在网上看到这位老哥的贴子尝试去卸载重装了一下 uniapp(vue2) 的编译, 成了!解决办法: 看这个老

文章图片
#vue.js#javascript
Node.js问题一:SyntaxError: Unexpected reserved word

遇到这个错误,上代码:import thenFs from 'then-fs'function getAllFile() {const r1 = await thenFs.readFile('./file/1.txt', 'utf8')console.log(r1)const r2 = await thenFs.readFile('./file/1.txt', 'utf8')console.log

文章图片
#javascript#前端
到底了