I’m seeing a lot of examples that use this.field
as a function within a computed
Vue function. For example, in this cookbook example: Block factory: Creating your own blocks collection | Kirby CMS
we see:
computed: {
textField() {
return this.field("text");
}
}
I’ve looked in the Vue.js docs as well as the limited Kirby docs, but I can’t find mention of this function anywhere.
Is the this.field
function documented anywhere?