We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56859a9 commit 0dbc690Copy full SHA for 0dbc690
dev-demo/custom/AfComponents.vue
@@ -346,6 +346,24 @@
346
347
</Select>
348
349
+ <JsonViewer
350
+ :value="[
351
+ {
352
+ id: 1,
353
+ name: 'Alice',
354
+ meta: {
355
+ age: 30,
356
+ hobbies: ['reading', 'biking'],
357
+ }
358
+ },
359
360
+ id: 2,
361
+ name: 'Bob',
362
363
+ ]"
364
+ :expandDepth="2"
365
+ />
366
+
367
</div>
368
369
@@ -380,6 +398,8 @@ import CustomRangePicker from "@/components/CustomRangePicker.vue";
380
398
import Toast from '@/components/Toast.vue';
381
399
import { useAdminforth } from '@/adminforth';
382
400
import { callApi } from '@/utils';
401
+import { JsonViewer } from '@/afcl'
402
383
403
384
404
const { alert } = useAdminforth();
385
405
import adminforth from '@/adminforth';
0 commit comments