You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
256 B
17 lines
256 B
3 years ago
|
<template>
|
||
|
<div class="m-404">页面未找到或无权访问</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.m-404 {
|
||
|
margin-top: 200px;
|
||
|
font-size: 60px;
|
||
|
color: rgba(#fff, 0.6);
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|