标签:his button outer this router eth index methods 页面
方法一:
1.给元素绑定点击监听
@click="goToPage"
2.在methods中写路由跳转函数
goToPage(){
this.$router.push(‘/test/index‘);
},
方法二:
给需要页面跳转的button加上router-link
<router-link to="/test/index" >
<mt-button >button</mt-button>
</router-link>
标签:his button outer this router eth index methods 页面
原文地址:https://www.cnblogs.com/lilililiwang/p/13267791.html