Apply provide and inject to refresh Vue page method

Apply provide and inject to refresh Vue page method

Method 1: Call the function directly

Reload the entire page. Either of the following will work:

1.window.location.reload()

2. this.$router.go()

Method 2: Use provide / inject (static refresh)

Declare a reload refresh function in the higher-order function

<template>
  <div id="app" v-if="show"></div>
</template>
<script>
export default {
  //Control display/hide, implement refresh data () {
    return {
      show: true
    }
  },
  // Pass the refresh method to the low-level component provide () {
    return {
      reload: this.reload
    }
  },
  methods: {
    // High-level component defines refresh method reload () {
      this.bol = false
      this.$nextTick(() => {
        this.bol = true
      })
    }
  }
}
</script>

Using refresh functions in low-level components

<template>
  <div></div>
</template>
<script>
export default {
  inject: ['reload'],
  methods: {
    // Low-level component, refresh fun () {
      this.reload()
    }
  }
}
</script>

Advantages Comparison

  • Directly calling the function in method 1 will cause the entire website to refresh, which will waste performance and provide a poor user experience. For large websites, you will need to wait a few seconds for the refresh animation to appear in the upper left corner of the browser.
  • Method 2 uses provide / inject, so users will not feel the refresh, and the refreshed page content range can be controlled, which will waste less performance.

The above is the details of the method of applying provide and inject to refresh the Vue page. For more information about Vue page refresh, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Learning and using provide/inject in Vue
  • Example of how to implement responsive data update using provide/inject in Vue.js
  • Use of provide and inject in Vue3
  • How to use [provide/inject] in Vue to implement page reload
  • Three ways to refresh the current page in the Vue project
  • Talk about the detailed application of provide/inject in Vue

<<:  Detailed explanation of root directory settings in nginx.conf

>>:  Which one should I choose between MySQL unique index and normal index?

Recommend

Computed properties and listeners details

Table of contents 1. Calculated properties 1.1 Ba...

Solution to the problem of data loss when using Replace operation in MySQL

Preface The company's developers used the rep...

Design Theory: Hierarchy in Design

<br />Original text: http://andymao.com/andy...

Detailed explanation of Vue project packaging

Table of contents 1. Related configuration Case 1...

Summary of some tips on MySQL index knowledge

Table of contents 1. Basic knowledge of indexing ...

How to create a MySQL database and support Chinese characters

Let's first look at the MySQL official docume...

Using an image as a label, the for attribute does not work in IE

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

Detailed explanation of Mysql transaction isolation level read commit

View MySQL transaction isolation level mysql> ...

Sample code for configuring nginx to support https

1. Introduction Are you still leaving your websit...

Example verification MySQL | update field with the same value will record binlog

1. Introduction A few days ago, a development col...

Detailed explanation of Vuex overall case

Table of contents 1. Introduction 2. Advantages 3...

How to use axios request in Vue project

Table of contents 1. Installation 2. There is no ...