UNPKG

@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.

8 lines (7 loc) 153 B
export interface JsonViewerProps { data: any; level?: number; parentKey?: string | number; darkMode?: boolean; expanded?: boolean; }