1đź‘Ť
âś…
I found a fix. vue-property-decorator
is the “culprit”:
https://github.com/kaorun343/vue-property-decorator/issues/102
It works when I explicitly specify a name for the recursive component in VuePageListEntry.vue:
@Component({ name: 'VuePageListEntry' })
export default class VuePageListEntry extends Vue {
👤Markuz
Source:stackexchange.com