基于父组件称为子组件(模态)的内容,模态文本中填充了作为对象从父组件传入的对象。
在一种情况下,我传递的对象(modalText
)之一包含路由器链接。元素显示在控制台中,文本显示在浏览器中,但是链接不起作用。
父母
modalText: {
subHeadline: `You can find ${this.name} in the <router-link :to="{name:'PartArea'}">part area</router-link> of your list`,
}
孩子(模态)
<h2 v-html="modalText.subHeadline">{{modalText.subHeadline}}</h2>