On the way... Maybe never...
@playground
<button>click</button>
@playground
<button @click="incr">{{count}}</button>
<script>
export default {
data() {
return { count: 1 }
},
methods: {
incr() {
this.count += 1
}
}
}
</script>
@playground
<template>
<HelloWorld></HelloWorld>
</template>
<script>
export default {
components: {
HelloWorld: {
render(h) {
return h('h1', null, 'hello world')
}
}
}
}
</script>