remove unuse field

This commit is contained in:
Fine 2022-09-27 09:53:46 +08:00
parent 717ce67ff9
commit 2ab2dfcafc

View File

@ -80,8 +80,7 @@ const props = defineProps({
}); });
const { t } = useI18n(); const { t } = useI18n();
const showTrace = ref<boolean>(false); const showTrace = ref<boolean>(false);
const traceOptions = ref<{ id: string; type: string; filter?: unknown }>({ const traceOptions = ref<{ type: string; filter?: unknown }>({
id: "related" + Math.round(Math.random() * 100),
type: "Trace", type: "Trace",
}); });
const key = computed(() => Object.keys(props.data)[0] || ""); const key = computed(() => Object.keys(props.data)[0] || "");