JSFiddle - React, Tailwind, and code Playground
by Geo George
HTML
<script src="https://unpkg.com/vue"></script>
<div id="app">
<span :v-html="title">{{ name | Upper }}</span>
</div>
JavaScript
new Vue({
el: '#app',
data: {
name: 'scotch.io',
title:"a"
},
filters: {
Upper(value) {
this.title= value.toUpperCase();
return value.toUpperCase();
}
}
});