简体   繁体   中英

HTML Tag in Array Value

The Requirement is to append an HTML element from Array Value to DOM

template: {
    0: {
       h1: '<h1>Hi</h1>'
    },
    1: {
       h2: '<h2>Hi</h2>'
    },
    2: {
       h3: '<h3>Hi</h3>'
    }
}

I have a VueJS For Loop :

        <div v-for="temp in template">
            {{ temp.h1}}
        </div>

DOM :

<h1>hi</h1>

I think you need to use v-html binding to inject raw html in page.

Something like this:

<div v-for="temp in template">
    <div v-html="temp.h1">
</div>

Check here for more info: https://v2.vuejs.org/v2/guide/syntax.html#Raw-HTML

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM