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,希望大神指点一二
1 回答
小怪兽爱吃肉
TA贡献1852条经验 获得超1个赞
mounted(){
this.init()
},
methods:{
init(){
console.log('hello,world')
}
}
谨供参考~
添加回答
举报
0/150
提交
取消