JSFiddle - React, Tailwind, and code Playground
by skirtle
HTML
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<div id="app">
<button @click="uploadClicked('vue')">
Click
</button>
</div>
JavaScript
new Vue({
methods:{
uploadClicked: function(typeoffile){
console.log("clicked",typeoffile)
this.currentStyle
},
},
computed:{
currentStyle: function() {
console.log("ENTERED ")
return {
height: '6px',
background: 'green'
}
}
}
}).$mount('#app')