0👍
✅
Posting the answer from Husam Ibrahim comment.
**Children**
export default {
components: {
Popover: () => import('@/components/inline-components/popover'),
Button: () => import('@/components/inline-components/button')
}
}
**Parent**
<template>
<Button>I am the Button</Button>
</template>
import Children from 'utilities/children'
export default {
// Add them as mixins instead of components
mixins: [Children]
}
Source:stackexchange.com