问题 在学习饿了么实践项目时候发现一个问题, 在mounted阶段,获取Element对象,console.log()可以读取出列表,而却无法读出它的length let foodList = this.$refs.menuWrapper.getElementsByClassName('calcul ...
分类:
Web程序 时间:
2020-09-14 19:16:09
阅读次数:
87
生命周期 A beforeCreate 创建前 生命周期 B created 创建完成 生命周期 C beforeMount 挂载前 生命周期 D mounted 挂载完成 生命周期 E beforeUpdata 即将更新渲染 生命周期 F updated 更新完成 生命周期 G beforeDes ...
分类:
其他好文 时间:
2020-09-02 16:59:34
阅读次数:
70
一、什么是生命周期? Vue中实例或者组件从创建到消灭中间经过的一系列过程 二、created和mounted区别? created--在模板渲染称html或者模板编译进路由前调用created mounted--已完成模板已经渲染或el对应渲染后 created:在模板渲染成html前调用,即通常 ...
分类:
其他好文 时间:
2020-08-01 12:36:49
阅读次数:
65
Vue父子组件生命周期执行顺序 结论 加载渲染过程 ->父beforeCreate -> 父created -> 父beforeMount ->子beforeCreate -> 子created -> 子beforeMount -> 子mounted -> 父mounted 子组件更新过程 ->父b ...
分类:
其他好文 时间:
2020-07-30 14:50:22
阅读次数:
62
如果父组件监听到子组件挂载mounted做一些逻辑处理 1、使用on和emit 子组件emit触发一个事件,父组件emit触发一个事件,父组件on监听相应事件。 // Parent.vue <Child @mounted="doSomething"/> // Child.vue mounted() ...
分类:
其他好文 时间:
2020-07-28 14:15:59
阅读次数:
54
思路: 第一步:在公共的css文件里面设置class类名,并添加要修改得样式。 第二步:在要修改控制的组件里,生命周期mounted中给要修改样式的DOM添加class类名。(此步可能涉及到异步。) 具体实现:common.css ...
分类:
其他好文 时间:
2020-07-27 17:44:13
阅读次数:
73
mounted() { const refresh = this.debounce(this.$refs.scroll.refresh, 500); this.$bus.$on("imgLoad", () => { refresh(); }); }, methods: { /** * 防抖函数 */ ...
分类:
其他好文 时间:
2020-07-27 09:37:23
阅读次数:
73
记一次工作中vue中mounted请求接口返回值和vue的data域中属性不一致的坑 当时需求:就是当时在这个页面中,就是本次补差余额只要变化,就会显示当前的时间。 当时处理的是使用change方法监听这个输入框的变化(其实也可以使用watch): 但是在调试的时候竟然出现:说我的这个bcbcsj没 ...
分类:
其他好文 时间:
2020-07-23 22:37:54
阅读次数:
127
1. 磁盘加挂 //查看磁盘挂载路径和使用情况 [root@localhost ~]# df -l Filesystem 1K-blocks Used Available Use% Mounted on /dev/mapper/centos-root 9754624 6240060 3514564 ...
分类:
系统相关 时间:
2020-07-16 12:11:53
阅读次数:
128
恢复内容开始 1.配置路由 { path: '/hellow', name:"hellow", component: hellow, meta:{title:"hellow"} } 2,在mount里面赋值 mounted(){ this.title=this.$route.matched; }, ...
分类:
Web程序 时间:
2020-07-15 23:29:58
阅读次数:
171