I have this in my data;
data(){
text: 'Go to <v-btn> to="profile">Profile</v-btn>'}
Now I need to render this with the html in my component. I tried using this
<div v-html="text"></div>
but it wouldn't render. What is the right way to do this.