1、this.$router.push()
    跳转到不同的url ,但是这个方法会向history栈添加一个记录,点击后退会返回到上一个页面

    1. this.$router.push('./home')
    2. this.$router.push({path:'./about'})

    2、this.$router.replace()
    描述:同样是跳转到指定的url 但是这个方法不会向history 里面添加新的记录,点击返回,会跳转到上上一个页面,上一个记录不存在。