vue页面跳转

浪尽此生 提交于 2019-12-17 17:00:53

1.点击事件跳转

//路由中配置
{
    path: '/examCenter/',
    name: 'examCenter',
    component: () => import(/* webpackChunkName: "about" */ '../views/examCenter.vue'),
    prop:true,
  },

//点击事件触发
 <img src="../img/1.jpg" class="imgs" @click="hosService" />
//方法调用
 methods: {
   examCenter() {
   this.$router.push("/examCenter") },
}

2.标签跳转

<router-link to='two'><button>点我到第二个页面</button></router-link>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!