I am currently utilizing vue-material
and running into the following situation:
<md-dialog-confirm
:md-active="true"
md-title="Make an Outbound Call"
md-confirm-text="Agree"
md-cancel-text="Disagree"
md-content="some <p>HTML</p> here"
@md-cancel="$emit('closeModal')"
@md-confirm="$emit('accept')"
>
While I can pass HTML within md-content
, my goal is to have it rendered using the Vue.js template engine so that I have the flexibility to utilize {{template interpolation }}
when necessary.
Would appreciate any assistance on how to achieve this.