@anilkumarthakur/vue3-json-viewer
Version:
This plugin provides a Vue 3 component for rendering and interacting with JSON data in a structured and visually appealing way. It supports features like dark mode, expanding and collapsing nested objects, and more.
9 lines (8 loc) • 303 B
TypeScript
import { App } from 'vue';
import { JsonViewerProps } from './types/jsonViewerTypes';
import { NestedComponent, JsonViewer } from './components';
declare const jsonViewerPlugin: {
install(app: App): void;
};
export { JsonViewer, jsonViewerPlugin, NestedComponent };
export type { JsonViewerProps };