Vue
HTML
<div id="app">
<span v-html="contractContent" />
</div>
CSS
body {
background: #20262E;
padding: 20px;
font-family: Helvetica;
}
#app {
background: #fff;
border-radius: 4px;
padding: 20px;
transition: all 0.2s;
}
h2 {
font-weight: bold;
margin-bottom: 15px;
}
Vue
new Vue({
el: "#app",
data() {
return {
name: "Martina Navratilova"
contractContent: `<p>Hi there ${this.brideName}</p>`,
}
},
computed: {
brideName(){
return `<p>Hi ${this.name.split(' ')[0]},</p>`
}
},
})