我已經在Vue新手了,並且遇到了無法訪問的問題。我有兩個文件。Vue2.0無法訪問的變量
月1日是App.vue哪裏定義<router-view>
<script>
export default {
name: 'app',
data(){
return{
info: false,
}
},
beforeMount(){
example...
this.info= true
this.$router.push('/main'); //where in router-view visible is component Main.vue
}
}
</script>
第二是組件Main.vue這是明確的:
<script>
export default{
name: 'main',
data(){
return{
}
},
beforeMount(){
//what i want to do:
console.log(App.data().info) //here should be visible true in console log
}
}
我想在第二個文件訪問從文件屬性第一。如何正確地做到這一點?提前致謝
應用程序和main之間的關係是什麼? – choasia
[Vue.js - 在組件中使用父數據]的可能重複(https://stackoverflow.com/questions/36722170/vue-js-using-parent-data-in-component) – ironcladgeek
可能重複的[Vue.js - 在組件中使用父數據](https://stackoverflow.com/questions/36722170/vue-js-using-parent-data-in-component) – ironcladgeek