路由器推送vue js后页面不刷新

qyyhg6bp  于 2023-05-07  发布在  Vue.js
关注(0)|答案(1)|浏览(213)

after router push page not refreshing. then i have use this code <button @click="$router.push('/student/'+student.uuid+'/fee/'+student_record.id).then(() => { window.location.reload()})">Click to Navigate but not working this too. what to do?

k2fxgqgv

k2fxgqgv1#

如果你在不同的文件中管理你的路由,比如router.js,那么你可以使用下面的代码和所需的参数来路由你的视图。

<button :to="{ name: 'projects.create' }" class="rounded-full text-center pt-1" pill > click </button>

或者你可以简单地使用

<a :href="`/projects/${project.id}/environments/${ env.id }`" ="text-dark">

相关问题