JSFiddle - React, Tailwind, and code Playground
HTML
<div id="vue">
{{test}}
</div>
JavaScript
new Vue({
el: '#vue',
name: 'test',
beforeCreate() {
console.log(this.$options.name);
if(!this.$options.computed){
this.$options.computed = {}
}
this.$options.computed[this.$options.name] = function() {
return 'woot'
}
}
})