当前位置:网站首页>Huikan source code -- Huikan app system secondary development source code sharing

Huikan source code -- Huikan app system secondary development source code sharing

2022-06-25 12:27:00 Procedure 15528175269

Huiqiao system development source code :

<template>
  <div class="not-defined">
    <img src="@assets/images/404.png" />

    <div class="content">
      <h3 class="title"> Page not found </h3>
      <span
        > I'm sorry ! The page you visited does not exist , Please return to the previous level or click the button below to return to the home page ...</span
      >
    </div>

    <div class="btn" @click="$router.replace({ path: '/' })">
       Back to the home page 
    </div>
  </div>
</template>

<script>
export default {
  name: "NotDefined"
};
</script>

<style scoped>
.not-defined img {
  width: 100%;
  margin-top: 18%;
}

.content {
  padding: 0 1rem;
  text-align: center;
  color: #44405e;
  font-size: 15px;
}

.title {
  margin-bottom: 0.6rem;
  color: #302c48;
  font-size: 20px;
}

.btn {
  color: #fff;
  background-color: #ef4c4c;
  font-size: 16px;
  padding: 0.16rem;
  border-radius: 25px;
  text-align: center;
  width: 2.4rem;
  margin: 0 auto;
  margin-top: 1rem;
}
</style>

原网站

版权声明
本文为[Procedure 15528175269]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202200532044904.html