我使用VueFire连接到包含菜谱列表的数据库,使用此代码加载所有菜谱(相关代码片段)
firebase: {
recipes: database.ref('recipes'),
},
data () {
return {
activeFilter: Filters.selected //returns active filter from child component for example 'pie'
};
},
在< template>
<li v-for="(recipe, i
我尝试在href中的URL中设置一个动态值。我正在使用Vue.js <a
href="https://example.com/glasses/guide-for-uploading"
target="_blank"
>
Check it here
</a> 所以在URL中间,我需要用productName替换眼镜。如何在此链接中正确完成此操作?我不确定是不是简单的数据绑定。