I am trying to parse HTML text that uses some vue directives. ``` var content = '<a v-link="{path: \'/somewhere\'}"> redirect </a>'. ``` Inside my html file i've got ``` <div v-html="content"></div> ``` Is there any way to parse that content?