the guide https://vuejs.org/guide/extras/web-components.html#building-custom-elements-with-vue may not be detailed enought for library authors. creating a custom elements `defineCustomElement` will not be enought to allow [type checking on vue template](https://vuejs.org/guide/typescript/overview.html#typescript-in-templates) I managed to do it by extending vue module types (as a believe this whats Nuxt does) ``` import Counter from './src/components/counter.ce.vue' declare module 'vue' { export interface GlobalComponents { 'web-counter': typeof Counter, 'WebCounter': typeof Counter, } } ``` [source code](https://github.com/adrienZ/example-vue-web-components-react/blob/main/packages/vue-ui/main.ts#L24)  Should we add this in the guide ?