我正在使用Trustpilot制作组件,该组件在同一页面上使用不同的小部件,因此每个template-id都不相同。以下是我的代码,但是没有看到TrustPilot徽标的任何内容,但是如果我删除props
并提供提供的模板ID,它就可以工作。
我在做什么错了?
TheWidget.vue
<div class="trustpilot-widget"
data-locale="en-GB"
data-template-id="'${tid}'"
data-businessunit-id=""/omitted because of security
data-style-height="20px"
data-style-width="100%">
<a href="https://uk.trustpilot.com/review/believeloans.com" target="_blank">Trustpilot</a>
</div>
<script>
export default {
props: ['tid'],
created() {
//Code omitted
}
}
</script>
Home.vue
<TheWidget tid="09765291018" />