mounted() { let that = this; // <!--把window.onresize事件挂在到mounted函数上--> window.onresize = () => { return (() => { window.fullHeight = document.document ...
分类:
其他好文 时间:
2020-04-18 18:27:24
阅读次数:
54
错误信息提示 # mount /dev/sdb1 /mnt/usb Mount is denied because the NTFS volume is already exclusively opened. The volume may be already mounted, or another ...
分类:
系统相关 时间:
2020-04-15 15:18:17
阅读次数:
192
下载swiper npm install swiper -s 在main.js引入 import Swiper form 'swiper' import 'swiper/dist/css/swiper.min.css' Vue.use(Swiper); 使用的话,在mounted中使用 ...
分类:
其他好文 时间:
2020-04-14 11:03:05
阅读次数:
142
VMwareconverterP2VLinux报错:Error:Unabletoclonethevolumemountedon/spacefromhostip解决方法:启动P2V后,vm一旦开机,立即关机。调整内存到8G,挂载cdromconverter-helper-vm-x64.iso
分类:
其他好文 时间:
2020-04-09 22:52:23
阅读次数:
162
Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True). /content/drive/My Dri ...
分类:
其他好文 时间:
2020-04-02 15:57:44
阅读次数:
125
props:['updateData'], data(){ return{ form: { _name:'', }, } }, 第一步接收数据: props:['updateData'] 第二步动态改变值: mounted(){ this.form._name = this.updateData._ ...
分类:
其他好文 时间:
2020-03-31 00:57:22
阅读次数:
507
寻找原因: <1> 查看调用使用图表的id是否正确 <2> 不要将echarts.js文件放在<head></head> 里面,容易阻塞后面的html,放在</body>之前。 <3> vue中使用:echarts.init()应该放在mounted()中,否则获取不到dom. (我遇到的是这种) ...
分类:
其他好文 时间:
2020-03-30 15:54:55
阅读次数:
65
解决办法: // 实例化echarts对象 var/let myChart = echarts.init(this.$refs.myChart) ...
分类:
其他好文 时间:
2020-03-25 10:29:35
阅读次数:
460
1. 什么是生命周期? 生命周期,就是实例或组件的生命周期,也就是实例或组件从创建到销毁的过程。组件的生命周期大致可以分为三个阶段:初始化、运行中、销毁。 三个阶段中的事件状态: 初始化阶段: beforeCreate created beforeMount mounted 运行中阶段: befor ...
分类:
其他好文 时间:
2020-03-25 01:18:28
阅读次数:
59
一、vue的生命周期是什么 vue每个组件都是独立的,每个组件都有一个属于它的生命周期,从一个组件创建、数据初始化、挂载、更新、销毁,这就是一个组件所谓的生命周期。在组件中对应的具体方法有: beforeCreate created beforeMount mounted bueforeUpdate ...
分类:
其他好文 时间:
2020-03-24 23:26:38
阅读次数:
65