[Vuejs]-Vue.js behaves weird in production mode, development is ok

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 {

Leave a comment