我是Vue的新手,我遇到了无法进入的问题。我有两个文件。
第一个是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
}
}
我想在第二个文件中访问第一个文件中的属性。怎么做得好?先感谢您
答案 0 :(得分:0)
每个组件实例都有自己独立的范围。如上所述:https://vuejs.org/v2/guide/components.html#Passing-Data-with-Props
您不能(也不应该)直接引用子组件模板中的父数据。可以使用props将数据传递给子组件。
答案 1 :(得分:0)