Reputation: 581
I have quite a short question.
How to use v-html
directive in vue JSX syntax?
Thanks in advance for an answer.
Upvotes: 6
Views: 4696
Reputation: 135752
Use domPropsInnerHTML
(one word, exactly like this, see below).
Example:
export default {
name: "app",
data() {
return {
msg: 'Something foo bar'
}
},
render() {
return (
<h1 domPropsInnerHTML={this.msg}></h1>
);
}
};
Upvotes: 14