mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-09 13:53:38 +08:00
18 lines
285 B
Vue
18 lines
285 B
Vue
<script setup lang="ts">
|
|
import VueJsonPretty from "vue-json-pretty";
|
|
import "vue-json-pretty/lib/styles.css";
|
|
|
|
defineProps({
|
|
graphData: Object
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<vue-json-pretty
|
|
:path="'res'"
|
|
:deep="3"
|
|
:showLength="true"
|
|
:data="graphData"
|
|
/>
|
|
</template>
|