auto-screen-view
Version:
大屏适配
60 lines (55 loc) • 2.32 kB
TypeScript
import { AllowedComponentProps } from 'vue';
import { App } from 'vue';
import { ComponentCustomProps } from 'vue';
import { ComponentOptionsBase } from 'vue';
import { ComponentOptionsMixin } from 'vue';
import { ComponentProvideOptions } from 'vue';
import { CreateComponentPublicInstanceWithMixins } from 'vue';
import { DefineComponent } from 'vue';
import { GlobalComponents } from 'vue';
import { GlobalDirectives } from 'vue';
import { PublicProps } from 'vue';
import { VNodeProps } from 'vue';
export declare const AutoScreen: DefineComponent<AutoScreenProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AutoScreenProps> & Readonly<{}>, {
originWidth: number;
originHeight: number;
fullScreen: boolean;
}, {}, {}, {}, string, ComponentProvideOptions, false, {
containerRef: HTMLDivElement;
}, HTMLDivElement>;
export declare interface AutoScreenProps {
originWidth?: number;
originHeight?: number;
fullScreen?: boolean;
}
declare const _default: {
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< AutoScreenProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
originWidth: number;
originHeight: number;
fullScreen: boolean;
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
containerRef: HTMLDivElement;
}, HTMLDivElement, ComponentProvideOptions, {
P: {};
B: {};
D: {};
C: {};
M: {};
Defaults: {};
}, Readonly< AutoScreenProps> & Readonly<{}>, {}, {}, {}, {}, {
originWidth: number;
originHeight: number;
fullScreen: boolean;
}>;
__isFragment?: never;
__isTeleport?: never;
__isSuspense?: never;
} & ComponentOptionsBase<Readonly< AutoScreenProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
originWidth: number;
originHeight: number;
fullScreen: boolean;
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
install: (vue: App) => void;
};
export default _default;
export { }