<el-row type="flex" justify="center">
<el-col :xs="24" :sm="12">
<div class="four_zero_four_bg">
<h1 class="text-center">404</h1>
</div>
<div class="contant_box_404">
<h3 class="h2">Look like you're lost</h3>
<p>the page you are looking for not avaible!</p>
<el-button type="success" @click="handlegoHome">Go to Home</el-button>
</div>
</el-col>
</el-row>
.page_404 {
padding: 40px 0;
background: #fff;
font-family: "Arvo", serif;
text-align: center;
}
.four_zero_four_bg {
background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
height: 400px;
background-position: center;
}
handlegoHome() {
this.$router.push({
path: "/",
name: "home"
});
}