Method 1: Call the function directlyReload the entire page. Either of the following will work:
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
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:
|
<<: Detailed explanation of root directory settings in nginx.conf
>>: Which one should I choose between MySQL unique index and normal index?
Table of contents 1. Calculated properties 1.1 Ba...
Preface The company's developers used the rep...
<br />Original text: http://andymao.com/andy...
Table of contents 1. Related configuration Case 1...
Table of contents 1. Basic knowledge of indexing ...
1. Add the isolation marker: ip netns add fd 2. P...
1. Download MySQL from the official website: This...
Let's first look at the MySQL official docume...
For example: Copy code The code is as follows: <...
View MySQL transaction isolation level mysql> ...
1. Introduction Are you still leaving your websit...
1. Introduction A few days ago, a development col...
Table of contents 1. Introduction 2. Advantages 3...
Table of contents 1. Installation 2. There is no ...
Overview binlog2sql is an open source MySQL Binlo...