@tsuyoz/vue-window
Version:
## Install ``` npm install @tsuyoz/vue-window ``` and this component depends below ``` npm install @vue/composition-api rxjs ``` ## Quick Start ``` import Vue from "vue" import VueCompositionApi from "@vue/composition-api" import VueWindow from "@tsuyoz/v
15 lines (14 loc) • 407 B
TypeScript
import Vue, { PluginObject } from "vue";
declare global {
interface Window {
Vue: Vue | undefined;
}
}
interface Option {
componentName?: string;
}
export declare const plugin: PluginObject<Option>;
export * from "./components/window/window-manager-hook";
export * from "./components/window/window-manager-store";
export * from "./components/window/window-store";
export default plugin;