Upgraded dependencies, bumped to Node 24.
This commit is contained in:
@@ -1,3 +1,17 @@
|
||||
<script setup>
|
||||
import { inject } from 'vue';
|
||||
|
||||
defineProps({
|
||||
is404: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
});
|
||||
|
||||
const pageContext = inject('pageContext');
|
||||
const { abortReason } = pageContext;
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="page">
|
||||
<div v-if="is404">
|
||||
@@ -14,20 +28,6 @@
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { inject } from 'vue';
|
||||
|
||||
defineProps({
|
||||
is404: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
});
|
||||
|
||||
const pageContext = inject('pageContext');
|
||||
const { abortReason } = pageContext;
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.page {
|
||||
display: flex;
|
||||
|
||||
Reference in New Issue
Block a user