generated from Seekra/repository-template
Add NotFound.vue #48 #50
Reference in New Issue
Block a user
Delete Branch "feature/not-found-page"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@@ -39,0 +39,4 @@},{path: '/:pathMatch(.*)*',name: 'not-found',Use camel case (notFound).
@@ -39,3 +45,3 @@];const router = createRouter({const router = createRouter({Omit the space at the end of the line.
@@ -0,0 +11,4 @@</template><style scoped>.global-header {Copying styles is a very bad idea. Nothing should be redundant.
@@ -0,0 +3,4 @@<header class="global-header"><h1>Seekra</h1><span class="error-message">ERROR 404: Page Not FoundDo not write ERROR uppercase.
@@ -0,0 +1,51 @@<template><div class="search-content">Do not use a container .search-content in a not found page.
@@ -0,0 +2,4 @@<div class="search-content"><header class="global-header"><h1>Seekra</h1><span class="error-message">No HTTP status code. That is confusing for people who are not familiar with technology.
@@ -0,0 +1,51 @@<template><div class="search-content"><header class="global-header">The not found page should be minimal, so omit the header. The navigation bar already contains Seekra.
Add NotFound.vueto Add NotFound.vue #48Good