@lorcan-store/vue-auto-router
Version:
A Vite plugin for auto-generating Vue router configuration with smart naming conventions and custom templates
11 lines • 344 B
TypeScript
import type { Plugin } from 'vite';
import type { PluginOptions } from './types';
/**
* Vue 路由自动生成插件
* @param options 插件配置选项
* @returns Vite 插件
*/
declare function VueAutoRouter(options?: PluginOptions): Plugin;
export default VueAutoRouter;
export type { PluginOptions };
//# sourceMappingURL=index.d.ts.map