Home  >  Article  >  Web Front-end  >  Useful 404 components

Useful 404 components

php中世界最好的语言
php中世界最好的语言Original
2018-03-09 16:38:211604browse

This time I will bring you a useful 404 component. What are the precautions when using the 404 component? The following is a practical case, let’s take a look.

<template>
  <div class="m404">
    <div style="height: 100px;"></div>
    <a href="
javascript
:;">
      <img v-on:click="goBack" src="../../../
static
/img/page404.png"
           width="409" height="177"
           alt="“真的很抱歉,我们搞丢了页面……”要不去网站首页看看?" border="0">
    </a>
  </div></template><script>
  export default {    name: &#39;Page404&#39;,    methods:{
      goBack () {        this.$router.push({path:&#39;/&#39;})
      }
    }
  }</script><style>
  .m404 {    margin:0 auto;    
vertical-align
: middle;    
text-align
: center
  }</style>

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to the php Chinese website Other related articles!

Related reading:

How to filter out false, null, 0, "", undefined, and NaN values ​​in a js array

How to modify the scroll bar style

WOW.js to make the page move

The above is the detailed content of Useful 404 components. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Common modules of npmNext article:Common modules of npm