export default {
functional: true,
render(h) {
console.log(this)
return h("div", "DFFG")
}
}
we can mark components asfunctional
, which means that they’re stateless (no reactive data) and instanceless (nothis
context)