vue-2-breadcrumbs
Version:
Breadcrumbs for Vue.js 2.0
10 lines (9 loc) • 352 B
TypeScript
import { ComponentOptions, PluginObject, VueConstructor } from 'vue';
declare type Dictionary<T> = {
[key: string]: T;
};
declare class VueBreadcrumbs implements PluginObject<ComponentOptions<Vue>> {
install(Vue: VueConstructor<Vue>, options?: Dictionary<any>): void;
}
declare const _default: VueBreadcrumbs;
export default _default;