style: lint fix
This commit is contained in:
parent
8dbf3868b2
commit
ce7eeed087
@ -1,9 +1,11 @@
|
||||
<script lang="ts" setup>
|
||||
import { useSidebar } from '../composables/index.js'
|
||||
|
||||
const { hasSidebar } = useSidebar()
|
||||
const props = defineProps(["isNotFound"])
|
||||
const props = defineProps<{
|
||||
isNotFound?: boolean
|
||||
}>()
|
||||
|
||||
const { hasSidebar } = useSidebar()
|
||||
</script>
|
||||
<template>
|
||||
<div
|
||||
|
||||
@ -3,13 +3,14 @@ import { withBase } from '@vuepress/client'
|
||||
import { ref } from 'vue'
|
||||
import LayoutContent from '../components/LayoutContent.vue'
|
||||
import Nav from '../components/Nav/index.vue'
|
||||
|
||||
const root = ref('/')
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="theme-plume">
|
||||
<Nav />
|
||||
<LayoutContent :isNotFound="true">
|
||||
<LayoutContent is-not-found>
|
||||
<div class="not-found">
|
||||
<p class="code">404</p>
|
||||
<h1 class="title">PAGE NOT FOUND</h1>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user