@vue-material/core
Version:
Yet another 'Material Design Components' library for Vue3.
21 lines (19 loc) • 929 B
TypeScript
import { default as NavigationBar } from './navigation-bar.vue';
import { default as Container } from './navigation-container.vue';
import { default as Content } from './navigation-content.vue';
import { default as Entry } from './navigation-entry.vue';
import { default as Item } from './navigation-item.vue';
type NavigationComponent = typeof NavigationBar & {
Bar: typeof NavigationBar;
Container: typeof Container;
Content: typeof Content;
Entry: typeof Entry;
Item: typeof Item;
};
declare const _default: NavigationComponent;
export default _default;
export { default as NavigationBar } from './navigation-bar.vue';
export { default as NavigationContainer } from './navigation-container.vue';
export { default as navigationContent } from './navigation-content.vue';
export { default as NavigationEntry } from './navigation-entry.vue';
export { default as NavigationItem } from './navigation-item.vue';