Mar*_*inh 1 vue.js vue-component
我正在为我的 vuejs 项目(vuejs:版本 2)使用 webpack 模板。我想知道如何使我的内容转义(除了v-html):
请注意,message包含一些<a>标签,如 : These is my website <a href="https://google.com">link</a>。
就像在车把中一样,我想使用类似的东西:
<p>{{{ message }}}</p>和<p>{{{ message | customFilter }}}</p>。
我已经尝试了第一个选项,但它不起作用。有没有办法让它与三重胡须一起工作?
我知道这不是 OP 想要的,但对于 Google 员工来说:
<span v-html="`{{ hey }}`"></span>
Run Code Online (Sandbox Code Playgroud)