@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.
10 lines (9 loc) • 348 B
TypeScript
import { GlobalOptions } from './types';
import { App } from 'vue';
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, };