[Vuejs]-How to show HTML from this array Vue JS

1👍

You should use v-html instead. Be careful when using this because if "c", "d", "e" are user inputs, it could expose your application to XSS attacks:

    <div id="app">
        <div v-html="pickedValue"></div>
        <picker v-model="pickedValue"></picker>
    </div>

https://v2.vuejs.org/v2/api/#v-html

Leave a comment