0👍
I have figured this out myself:
https://v2.vuejs.org/v2/guide/components-edge-cases.html#Recursive-Components
it should be:
beforeCreate() {
this.$options.components.ComponentA = require("./ComponentA").default;
},
Source:stackexchange.com