Added visibility toggle to stash tile. Collapsed stash page directory structure.

This commit is contained in:
2024-03-26 03:00:50 +01:00
parent f6b50cc732
commit ce4b9e7d40
15 changed files with 127 additions and 30 deletions

View File

@@ -1,14 +1,16 @@
<template>
<div v-if="is404">
<h1>404 Page Not Found</h1>
<div class="page">
<div v-if="is404">
<h1>404 Not Found</h1>
<p v-if="abortReason">{{ abortReason }}</p>
<p v-else>This page could not be found.</p>
</div>
<p v-if="abortReason">{{ abortReason }}</p>
<p v-else>This page could not be found.</p>
</div>
<div v-else>
<h1>500 Internal Error</h1>
<p>Something went wrong.</p>
<div v-else>
<h1>500 Internal Error</h1>
<p>Something went wrong.</p>
</div>
</div>
</template>
@@ -25,3 +27,10 @@ defineProps({
const pageContext = inject('pageContext');
const { abortReason } = pageContext;
</script>
<style scoped>
.page {
display: flex;
justify-content: center;
}
</style>