-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from School-of-Website-Engineering/develop
- Loading branch information
Showing
3 changed files
with
44 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<template> | ||
<div> | ||
<div class="p404 wrap"> | ||
<div class="banxin"> | ||
<img | ||
src="http://kumanxuan1.f3322.net:8360/static/store-pc/img/404.94e7c552.jpg" | ||
alt="404" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default {}; | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.banxin { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
img { | ||
width: 100%; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
<template> | ||
<div> | ||
asdfasedfd | ||
</div> | ||
<div> | ||
<NotFound /> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import NotFound from "@/components/NotFound.vue"; | ||
export default { | ||
name: "User", | ||
data() { | ||
return {}; | ||
} | ||
} | ||
//注册404组件 | ||
components: {NotFound} | ||
}; | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
</style> | ||
<style lang="scss" scoped></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
<template> | ||
<div> | ||
|
||
</div> | ||
<div> | ||
<NotFound /> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default {} | ||
import NotFound from "@/components/NotFound.vue"; | ||
export default { | ||
//注册404组件 | ||
components: {NotFound} | ||
}; | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
</style> | ||
<style lang="scss" scoped></style> |