json - Show gist scripts in Vue js -


i working vue-js based website , showing data using json api. parse data using axios , returned response view.

my json api contains html data including embed gist below

<p>some informative text here <br />  <script src="https://gist.github.com/nisat19/8e8e2c03ecbf198daef168948548d481.js"></script> </p> 

in view, tried render data v-html

<div v-html="content"></div> 

it parses html portion not render gist. i.e

some informative text here /* gist script missing */

is there way parse script?


Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -