Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 6m48s
19 lines
260 B
Vue
Executable File
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> |