For globally defined Components Here is an example of adding a component RouterView as global component:

import { RouterView } from 'vue-router'

declare module '@vue/runtime-core' {
interface GlobalComponents {
RouterView
}
}

Properties