First you need to modify App.vue. <template> <!-- Company Management --> <div class="companyManage"> <router-view v-if="isRouterAlive"></router-view> </div> </template> <script> export default { name: "companyManage", watch: {}, provide() { return { reload:this.reload } }, data() { return { isRouterAlive:true }; }, methods: { reload() { this.isRouterAlive = false; this.$nextTick( () => { this.isRouterAlive = true; }) } }, mounted() {} }; </script> <style scoped> .companyManage { width: 100%; height: 100%; position: relative; background: #fff; } </style> 2. Go to the page that needs to be refreshed to reference it, use inject to import the reference reload, and then call it directly. inject:["reload"], this.reload(); This is the end of this article about Vue's partial page refresh (router-view page refresh). For more relevant Vue page partial refresh content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Exploring the use of percentage values in the background-position property
>>: Tutorial on installing nginx in Linux environment
This article example shares the specific code of ...
Original link https://github.com/XboxYan/no… A bu...
This article uses an example to describe how MySQ...
When we want to use a new CSS feature, we always ...
A jQuery plugin every day - jQuery plugin to impl...
This article introduces the sample code for imple...
1. Update the yum source The PostgreSQL version o...
1. Introduction Image maps allow you to designate...
Preface Recently, I added two fields to a table i...
Table of contents 1. Docker distributed lnmp imag...
Here is how to install Tomcat-8.5.39 on centos7.6...
This article shares with you the installation and...
Table of contents Methods that do not change the ...
Table of contents 1. Understanding the Equality R...
Table of contents 1. beforeunload event 2. Unload...