Sign in

front / ningxia-credit-web · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • ningxia-credit-web
  • src
  • view
  • 404.vue
  • 初始项目
    c955bcc0
    shichunlong authored
    2025-06-05 14:01:07 +0800  
    Browse Code »
404.vue 420 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<template>
  <div class="common_con">
    <div class="no_page_wrap">
      <el-empty description="页面找不到了">
        <router-link to="/">
          <el-button class="primary-btn">去首页</el-button>
        </router-link>
      </el-empty>
    </div>
  </div>
</template>

<style scoped>
.no_page_wrap {
  .primary-btn {
    color: #FFFFFF;
    width: 100%;
  }
}
</style>
<script setup lang="ts">
</script>