2021-01-28 07:39:31 +00:00
|
|
|
<template>
|
2021-06-21 10:03:51 +00:00
|
|
|
<AppSection label="response">
|
2021-03-01 03:58:14 +00:00
|
|
|
<HttpResponseMeta :response="response" :active="active" />
|
2021-01-28 07:39:31 +00:00
|
|
|
<div v-if="response.body && response.body !== $t('loading')">
|
2021-03-01 03:58:14 +00:00
|
|
|
<LensesResponseBodyRenderer :response="response" />
|
2021-01-28 07:39:31 +00:00
|
|
|
</div>
|
2021-03-01 03:58:14 +00:00
|
|
|
</AppSection>
|
2021-01-28 07:39:31 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
props: {
|
|
|
|
|
response: {
|
|
|
|
|
type: Object,
|
2021-05-18 09:27:29 +00:00
|
|
|
default: () => {},
|
2021-01-28 07:39:31 +00:00
|
|
|
},
|
|
|
|
|
active: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|