vue 页面跳转的两种方式

2020-05-20 09:11:53来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

vue 页面跳转的两种方式

1.标签跳转

    <router-link to='two.html'><button>点我到第二个页面</button></router-link>

 

2.点击事件跳转

htm:

<el-button type="primary" @click="doLogin">登录</el-button>

js:

methods: {
    doLogin() {

        var that = this;
        axios
            .post('http://localhost/doLogin', this.loginData)
            .then(function (response) {
                console.log(response);
                if (response.data == "ok") {
                    that.$router.push({path: './Index'})
                }

            })
            .error(function (error) {
                console.log(error)
            })

    }
}

 

 

 

原文链接:https://www.cnblogs.com/ckfeng/p/12922087.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:从去年的10k到30k,只因为把Jvm学习透了!

下一篇:京东购物车的 Java 架构实现及原理!