1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-21 09:19:16 +08:00

19 lines
541 B
Vue
Raw Normal View History

2022-08-16 23:30:23 +08:00
<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 -->
2023-02-02 14:46:13 +08:00
<!-- > -->
2022-08-16 23:30:23 +08:00
</div>
</div>
</template>
<script setup lang="ts" name="404"></script>
<style scoped lang="scss">
@import './index.scss';
</style>