Skip to content

Vue Extensions

The Vue extensions provide Vue.js on its own. This means that you should not add Vue.js to the package.json of your project.

The extensions provide the following options:

ts
interface VueExtensionOptions {
    enabled: boolean;
    components?: {
        [key: string]: Component | DefineComponent;
    };
    onBootstrap?: (app: App<Element>) => void;
}