Files
tsd_test/www/first.loc/src/components/PageNotFound.vue
adminps_pv 4df494767b
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 6m48s
c4
2026-03-25 14:11:55 +00:00

19 lines
260 B
Vue
Executable File

<template>
<div>404! Страница не найдена!</div>
</template>
<script>
export default {
name: "PageNotFound"
}
</script>
<style scoped>
div{
font-size: 20pt;
margin: auto;
text-align: center;
margin-top: 50px;
color:red;
}
</style>