• zcdtk's avatar
    update · 20ad17fb
    zcdtk 提交于
    20ad17fb
500.vue 831 字节
<template>
  <div class="app-500">
    <img src="assets/images/500.jpg" alt />
    <div class="btnbox">
      <ion-button class="backbtn" @click="back">上一步</ion-button>
      <ion-button class="backbtn" @click="backindex">返回首页</ion-button>
    </div>
  </div>
</template>
<script lang="ts">
import {
  Vue,
  Component,
  Prop,
  Provide,
  Emit,
  Watch
} from "vue-property-decorator";

@Component({
  components: {}
})
export default class App404 extends Vue {
  /**
   * 返回上一步
   */
  public back() {
    if (window.history.length <= 1) {
      this.$router.push({ path: "/" });
      return false;
    } else {
      this.$router.go(-1);
    }
  }
  /**
   * 返回首页
   */
  public backindex() {
    this.$router.push({ path: "/" });
  }
}
</script>
<style lang = "less">
@import "./500";
</style>