<div class="container">
<div id='root' class="box">
<label class="label">Сюда вставляем текст</label>
<input class="input is-medium" type='text' id='input' v-model='message'>
<p class="input-value">О чудо! Откуда модель уже знает , что мы вставили текст ? <span class="highlight">{{ message }}</span></p>
<img src='https://www.kino-teatr.ru/blog/331/9240.jpg' />
</div>
</div>
.container {
padding-top: .5em;
}
.input-value {
margin-top: .5em;
font-size: 1em;
}
.highlight {
color: #00d1b2;
font-weight: bold;
}
img{
height:170px;
}
View Compiled
new Vue({
el: '#root',
data: {
message: 'Сюды...'
}
})
View Compiled