<template>
  <div>
    <h1>404 Not Found! 👀</h1>
    <router-link to="/">
      <el-button type="primary">返回首页</el-button>
    </router-link>
  </div>
</template>

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

<style scoped></style>