glhcp/pc/layouts/error.vue

25 lines
416 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<div class="error flex-col col-center">
<h1 class="mb16">抱歉您访问的页面出错了</h1>
<div class="muted">您可能输错了网址或该网页已被删除不存在等</div>
</div>
</template>
<script>
export default {
components: {
},
data() {
return {
};
},
methods: {
}
};
</script>
<style lang="scss" scoped>
.error {
padding-top: 200px;
}
</style>