vue 页面刷新
Posted miny-simp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 页面刷新相关的知识,希望对你有一定的参考价值。
app.vue
<template> <div id="app"> <router-view v-if="isRouterAlive"></router-view> </div> </template> <script> export default { name: ‘App‘, provide() { return { reload: this.reload } }, data () { return { isRouterAlive: true } }, methods: { reload() { this.isRouterAlive = false; this.$nextTick(function () { this.isRouterAlive = true; }) } } } </script>
需要刷新的页面(lscz.vue)中注册 reload ,调用reload() 方法,
export default { components: { "v-lsczLeft": lsczLeft }, inject: [‘reload‘], //注入reload方法 data() { return { }; }, methods: { gdSubmit() { this.teload(); //刷新 } } }
以上是关于vue 页面刷新的主要内容,如果未能解决你的问题,请参考以下文章