Vue2 implements provide inject to deliver responsiveness

Vue2 implements provide inject to deliver responsiveness

1. Conventional writing in vue2

// The parent component provides 'foo'
var Provider = {
data(){
    return {
        foo: 'bar'
    }
}
  provide:
    fooProvide: this.fooFn // pass a reference type function},
 methods:{
     fooFn() {
        return this.foo
      }
 }
}

var Child = {
  inject: ['fooProvide'],
  computed:{
      fooComputed(){
          return this.fooProvide() // Because the function passed in is a reference type}
  }
  created () {
    console.log(this.fooComputed) 
  }
  // ...
}

2. The unconventional way of writing in vue2, but comfortable to use. (The usage is probably the same, but the value passed becomes this--> the entire instance)

// The parent component provides 'foo'
var Provider = {
data(){
    return {
        foo: 'bar',
        other:'...'
    }
}
  provide:
    app: this // pass the entire this past},
  mounted(){
      const that = this
      setTimeout(()=>{
          that.foo = 'Change value'
      },4000)
  }
}

var Child = {
  inject: ['app'],
  created () {
    console.log(this.app.foo) // Everything below this.app is responsive because they are all references to the same instance}
  // ...
}

3. vue2 + ts (because if you haven't used ts before, you really don't know how to use it, so here's an example)

Provide method:
1. @Provide() foo = 'foo'
2. @Provide('bar') baz = 'bar'

Inject method:
1. @Inject() foo: string
2. @Inject('bar') bar: string
3. @Inject(s) baz: string

Example:

// The parent component provides 'fooProvide'
@Provide('fooProvide') // Name it whatever you want, just pass the same value as the one you receive. But generally keep it the same as the variable below fooProvide = this.refreshNumFn // Variable receives the value to be passed refreshNumFn() {
  return this.refreshNum
}

// Child component receives @Inject('fooProvide') fooProvide: any
get valueA(): any {
    return this.fooProvide()
  }
mounted(){
    console.log(this.valueA) // ...
}

This is the end of this article about vue2's implementation of provide inject to deliver responsiveness. For more related vue2 provide inject 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:
  • Vue solves the problem of provide and inject response
  • Talk about the detailed application of provide/inject in Vue
  • A brief analysis of the use of provide / inject in Vue
  • Responsive monitoring solution for provide inject in Vue

<<:  Detailed explanation of the solution to the error in creating a user and granting permissions in mysql8.0

>>:  Tutorial on importing and exporting Docker containers

Recommend

Detailed explanation of display modes in CSS tags

Label display mode (important) div and span tags ...

Solution to the problem of saving format in HTML TextArea

The format of textarea can be saved to the databas...

How to install php7 + nginx environment under centos6.6

This article describes how to install php7 + ngin...

Three ways to refresh iframe

Copy code The code is as follows: <iframe src=...

Detailed explanation of some settings for Table adaptation and overflow

1. Two properties of table reset: ①border-collaps...

MySQL view principles and basic operation examples

This article uses examples to illustrate the prin...

MySQL 8.0.12 installation and configuration graphic tutorial

Recorded the download and installation tutorial o...

How to install and configure WSL on Windows

What is WSL Quoting a passage from Baidu Encyclop...

Installation tutorial of the latest stable version of MySQL 5.7.17 under Linux

Install the latest stable version of MySQL on Lin...

Some key points of website visual design

From handicraft design to graphic design to web de...

Practice of multi-layer nested display of element table

There is a requirement for a list containing mult...

How to write configuration files and use MyBatis simply

How to write configuration files and use MyBatis ...

mysql: [ERROR] unknown option '--skip-grant-tables'

MySQL database reports ERROR 1045 (28000): Access...