Vue的生命周期

老大夫 发布于 2022-06-14 16:39
标签: vue

Vue 打开页面时就加载方法,例如查询

老大夫 发布于 2022-05-28 11:14
想要实现一打开页面就加载函数的效果,只需要添加created就可以了 把需要执行的方法先在methods中声明,然后再created中调用 var user = new Vue({ el:"#user", data: { users:[], }, //********************************* ...
标签: vue html

在使用axios时,this已经不是本地的this了.

老大夫 发布于 2022-05-26 20:11
在使用axios时,this已经不是本地的this了,而是axios的this. 我们需要改变本地值时就需要先保存本地this在一个对象中,在axios中使用. 例如:以下代码将本地this暂存在that中,然后使用that进行本地数据操作. methods:{ getName:function (){ //*...
标签: vue axios

vue.js:634 [Vue warn]: Property or method "userName" 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 components, by initializing the property. See:

老大夫 发布于 2022-05-26 20:03
原因: vue使用了插值表达式,但是未在data中声明 解决: 在data{ } 中声明就好了 转载: https://blog.csdn.net/qq_43498860/article/details/120241962
标签: vue