The full scope across this batch: POST /sessions key→token exchange, SessionStore dual-index with revoke_by_id, CLI Bearer injection (ONTOREF_TOKEN), ontoref setup --gen-keys, install scripts, daemon config form roundtrip, ADR-004/005, on+re self-description update (fully-self-described), and landing page refresh.
21 lines
402 B
Vue
21 lines
402 B
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue'
|
|
import { handleBackground } from '../layoutHelper'
|
|
|
|
const props = defineProps({
|
|
background: {
|
|
default: '',
|
|
},
|
|
})
|
|
|
|
const style = computed(() => handleBackground(props.background, true))
|
|
</script>
|
|
|
|
<template>
|
|
<div class="slidev-layout cover" :style="style">
|
|
<div class="my-auto w-full">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</template>
|