mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-21 17:29:17 +08:00
19 lines
532 B
Vue
19 lines
532 B
Vue
|
<template>
|
|||
|
<div class="not-container">
|
|||
|
<img src="@/assets/images/404.png" class="not-img" alt="404" />
|
|||
|
<div class="not-detail">
|
|||
|
<h2>404</h2>
|
|||
|
<h4>抱歉,您访问的页面不存在~🤷♂️🤷♀️</h4>
|
|||
|
<!-- <el-button type="primary" @click="tabStore.goHome()"
|
|||
|
>返回首页</el-button -->
|
|||
|
>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
|
|||
|
<script setup lang="ts" name="404"></script>
|
|||
|
|
|||
|
<style scoped lang="scss">
|
|||
|
@import './index.scss';
|
|||
|
</style>
|