javascript - vuejs页面加载完成后执行函数
我想大声告诉你
我想大声告诉你 2017-06-21 10:12:36
0
3
973

module.exports = {

data: function(){
    return {
        memberQrcodeState: false
    }
},
components: {memberQrcode},
created: function(){
},
beforeRouteEnter: function(to, from, next) {
    // 在渲染该组件的对应路由被 confirm 前调用
    // 不!能!获取组件实例 `this`
    // 因为当钩子执行前,组件实例还没被创建
    //$e.target.src= require("../imgs/test/232.jpg")
    next();
    return true;
},
methods: {
    
},
beforeRouteLeave: function(to, from, next) {
    // 导航离开该组件的对应路由时调用
    // 可以访问组件实例 `this`
    next();
}

};

在这基础上加一个页面加载完成后执行的函数!我是小白,第二天接触vuejs,希望大神指点一二

我想大声告诉你
我想大声告诉你

全部回复(3)
巴扎黑
mounted(){
    this.init()
},
methods:{
    init(){
        console.log('hello,world')
    }
}

谨供参考~

扔个三星炸死你

Vue2.0

雷雷
習慣沉默

已安装

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板