Vue uses three methods to refresh the page

Vue uses three methods to refresh the page

When we are writing projects, we often encounter situations where the user performs an action, changes certain states, and needs to refresh the page to re-render the page. Such as: user login successful, addition, deletion, update, etc.

  • Original method:
location.reload();
  • Vue's built-in routing jump:
this.$router.go(0);

Anyone who has used it knows that the first two force the page to refresh, which will cause a brief flicker and a poor user experience.
So, we choose the third method:

  • First, write the following code in the App:
<template>
    <div id="app">
    	<router-view v-if="isRouterAlive"></router-view>
	</div>
</template>
<script>
    export default {
        name: 'App',
        provide () { //Provide variables in the parent component and inject variables in the child component through inject.                                             
            return {
                reload: this.reload                                              
            }
        },
        data() {
            return {
                isRouterAlive: true //Variable that controls whether the view is displayed}
        },
        methods: {
            reload () {
                this.isRouterAlive = false; //Close first,
                this.$nextTick(function () {
                    this.isRouterAlive = true; //Open again}) 
            }
        },
    }
</script>

Next, we can write this in the component that needs to refresh the page:

export default {
    inject:['reload'], //Inject the reload method in App data () {
        return {
    	.......
        }
    },

Use in the code block that needs to refresh the page:

This concludes this article about Vue's three methods of refreshing the page. For more relevant Vue refresh page 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:
  • Detailed explanation of how to automatically refresh the page and refresh method after deleting Vue list data
  • How to handle the loss of parameters when refreshing the page when passing parameters to vue router
  • Vue router passes parameters and solves the problem of parameter loss when refreshing the page
  • Vue listens to route changes and refreshes the page in the App.vue file
  • Solve the problem of losing store data after Vue refreshes the page

<<:  MySQL: mysql functions

>>:  Docker-compose steps to configure the spring environment

Recommend

Web page HTML code: production of scrolling text

In this section, the author describes the special...

Introduction to the use of this in HTML tags

For example: Copy code The code is as follows: <...

An example of using CSS methodologies to achieve modularity

1. What are CSS methodologies? CSS methodologies ...

An example of elegant writing of judgment in JavaScript

Table of contents Preface 1. Monadic Judgment 1.1...

MySQL scheduled task example tutorial

Preface Since MySQL 5.1.6, a very unique feature ...

Analysis of MySQL cumulative aggregation principle and usage examples

This article uses examples to illustrate the prin...

Summary of vue's webpack -v error solution

Xiaobai learned about Vue, then learned about web...

3 simple ways to achieve carousel effects with JS

This article shares 3 methods to achieve the spec...

Details about the like operator in MySQL

1. Introduction When filtering unknown or partial...

How to install and configure the supervisor daemon under centos7

Newbie, record it yourself 1. Install supervisor....

Install Apple Mac OS X in VMWare12 Graphic Tutorial

1. Introduction: Because my friend wanted to lear...

Solution to the problem of English letters not wrapping in Firefox

The layout of text has some formatting requiremen...

30 free high-quality English ribbon fonts

30 free high-quality English ribbon fonts for down...

Code analysis of user variables in mysql query statements

In the previous article, we introduced the MySQL ...

Example of Vue transition to achieve like animation effect

Table of contents Results at a Glance Heart Effec...