我想初始化* .vue中的数据,但是创建了'的方法。只运行一次,所以有一个方法随时运行,就像指令' ng-init'在angulajs?非常感谢!
答案 0 :(得分:1)
在vue-router for vue 1中,曾经有一个activate
钩子允许你这样做。
据我所知,在第2节中,它只是稍微复杂一些。假设你有一个init
方法来初始化你的状态。
created () {
// fetch the data when the view is created and the data is
// already being observed
this.init()
},
watch: {
// call again the method if the route changes
'$route': 'init'
},