createInstance.d.ts 358 B

1234567
  1. import { DefineComponent } from 'vue';
  2. import { MountingOptions } from './types';
  3. export declare function createInstance(inputComponent: DefineComponent<{}, {}, any, any, any, any>, options?: MountingOptions<any> & Record<string, any>): {
  4. app: import("vue").App<Element>;
  5. props: Record<string, unknown>;
  6. componentRef: import("vue").Ref<null>;
  7. };