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?
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">
1条答案
按热度按时间k2fxgqgv1#
如果你在不同的文件中管理你的路由,比如router.js,那么你可以使用下面的代码和所需的参数来路由你的视图。
或者你可以简单地使用