@wdns/vuetify-resize-drawer
Version:
The vuetify-resize-drawer component extends the functionality of the v-navigation-drawer so that it is resizable by the user.
11 lines (10 loc) • 372 B
TypeScript
import { App } from 'vue';
import { GlobalOptions } from './types';
import { default as VResizeDrawer } from './VResizeDrawer.vue';
export declare const globalOptions: unique symbol;
export declare function createVResizeDrawer(options?: GlobalOptions): {
install: (app: App) => void;
};
export default VResizeDrawer;
export { VResizeDrawer };
export * from './types';