Start app when keycloak is ready; components
All checks were successful
/ build (push) Successful in 10s
All checks were successful
/ build (push) Successful in 10s
This commit is contained in:
parent
d3943fc0b2
commit
6c5ef2f42c
6 changed files with 144 additions and 122 deletions
23
src/ResourceResponse.vue
Normal file
23
src/ResourceResponse.vue
Normal file
|
@ -0,0 +1,23 @@
|
|||
<script setup lang='ts'>
|
||||
import { ref, type ComponentObjectPropsOptions } from 'vue'
|
||||
|
||||
interface Props {
|
||||
resourceResponse: {}
|
||||
err: string
|
||||
}
|
||||
|
||||
const props = defineProps<Props>()
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="resources">
|
||||
<div v-if="Object.entries(resourceResponse).length > 0" class="resource">
|
||||
<div v-for="(value, key) in resourceResponse">
|
||||
<div class="key" :innerText="key"></div>
|
||||
<div class="value" :innerText="value"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="err" class="msg resource error" :innerText="err"></div>
|
||||
</template>
|
Loading…
Add table
Add a link
Reference in a new issue