28 lines
681 B
Vue
28 lines
681 B
Vue
<template>
|
|
<AppSection label="response">
|
|
<HttpResponseMeta :response="response" />
|
|
<LensesResponseBodyRenderer v-if="!loading" :response="response" />
|
|
</AppSection>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent } from "@nuxtjs/composition-api"
|
|
import { useReadonlyStream } from "~/helpers/utils/composables"
|
|
import { restResponse$ } from "~/newstore/RESTSession"
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
const response = useReadonlyStream(restResponse$, null)
|
|
|
|
const loading = computed(
|
|
() => response.value === null || response.value.type === "loading"
|
|
)
|
|
|
|
return {
|
|
response,
|
|
loading,
|
|
}
|
|
},
|
|
})
|
|
</script>
|