如何将图像URL传递给该Vue组件?我将代码移到一个单独的php文件中,该文件将包含Vue使用的<script>
标签,但无法识别来自父组件的传递数据。
Vue.component('theme-parallax',{
template: '#parallax-tpl',
data(){
return{
pageData: []
}
}
});
组件标记
注意:page.embedded.parallax_image
将在父组件中正常工作。我是新手,所以要获取我正在使用父组件中的方法的数据,如果有人可以向我解释如何将数据从主vue实例传递到所有组件,那将是非常不错的。
<script type="text/x-template" id="parallax-tpl">
<div class="row m-0">
<div class="col-sm-12 col-md-12 col-lg-12 col-parallax p-0" v-prlx.background="{ speed: 0.08 }" :style="{ height: '70vh', backgroundImage: 'url('+page.embedded.parallax_image+')', backgroundSize: 'cover' }"></div>
</div>
</script>
这就是我使用组件的方式
<script type="text/x-template" id="home-tpl">
<div class="container-fluid p-0">
<div class="row m-0" v-for="page in pageData">
<div class="col-sm-12 col-md-12 col-lg-12 p-0" v-if="page.embedded.primary_featured_image">
<img class="img-fluid w-100" :src="page.embedded.primary_featured_image">
</div>
<div class="col-sm-12 col-md-12 col-lg-12 p-5 mt-5">
<h1>{{ page.title.rendered }}</h1>
</div>
<div class="col-sm-12 col-md-12 col-lg-12 p-5 mt-5" v-html="page.content.rendered"></div>
</div>
<theme-section data-section="about" data-section-align="left"></theme-section>
<theme-parallax v-for="page in pageData" ></theme-parallax>
<theme-section data-section="office" data-section-align="right"></theme-section>
</div> <!-- end container-fluid -->
</script>
答案 0 :(得分:1)
您需要在组件中创建一个属性,并将页面从父级传递给它。
例如父模板
<theme-parallax v-for="page in pageData" :page="page" :key="page.id"></theme-parallax>
如果页面没有唯一ID,则应为键使用唯一属性。
然后在组件中
Vue.component('theme-parallax',{
template: '#parallax-tpl',
props: {
page: {
type: Object,
default: function() {return null;},
}
},
data(){
return{
pageData: []
}
}
});