JSFiddle - React, Tailwind, and code Playground
by Max Liashuk
HTML
<script src="https://rawgit.com/yyx990803/vue/master/dist/vue.js"></script>
<pre>{{ $data | json }}</pre>
----
<pre>{{ someMethod() | json }}</pre>
JavaScript
new Vue({
el: 'body',
data: {
something: "test one"
},
methods: {
someMethod(){
return this.$data
}
}
})