JSFiddle - React, Tailwind, and code Playground
HTML
<div id="app">
<input type="range" v-model="value">
<div>
Уровень <span v-text="total"></span>
</div>
</div>
Vue
var app = new Vue({
el: '#app',
data: {
value: 50
},
computed: {
total: function () {
return this.value * 10
}
}
});