Home > Web Front-end > Vue.js > body text

What are the timing and precautions for setup execution in Vue3

王林
Release: 2023-05-14 11:52:05
forward
1779 people have browsed it

setup execution timing and points of attention

The setup execution timing is before beforeCreate

Data and methods cannot be used in setup because they have not been initialized yet

Because it cannot Data and methods are used in the setup function, so in order to avoid our incorrect use, Vue directly changes this in the setup function to undefined.

setup can only be synchronous, not asynchronous

What are the timing and precautions for setup execution in Vue3

Vue3.0 setup() function

The setup() function serves as the entry point for using the composition API inside the component. The setup() function is called after the initial prop parsing but before the component instance is created. For component life cycle hooks, the setup() function is called before the beforeCreate hook.

If the setup() function returns an object, the properties on the object will be merged into the rendering context of the component template. For example: The object returned by the

setup() {
  // 为目标对象创建一个响应式对象
  const state = Vue.reactive((count: 0})
  function increment() {
    state.count++
  }
// 返回一个对象,该对象上的属性可以在模板中使用
  return {
    state,
    increment
  }
}
Copy after login

setup() function has two attributes, one is a responsive object (that is, the proxy object created for the original object), and the other is a function. In DOM templates, these two attributes can be used worldwide, such as:

<view @click="addClick">count值:{{state.count}}</view>
Copy after login

setup() function can receive two optional parameters, the first one is the parsed props. This parameter can be used to access the props defined in the props option, such as:

app.component(&#39;ButtonItem&#39;, {
  props: [&#39;buttonTitle&#39;],
  setup(props) {
   console.log(props.buttonTitle) 
  }
})
Copy after login

The second optional parameter received by the setup() function is a context object, which is an ordinary JavaScript object, not Responsive, you can completely use the ES6 object deconstruction syntax to deconstruct the context. In addition, it also exposes 3 component properties, such as:

const component = {
  setup(props, context) {
    // 属性(非响应式对象)
    console.log(context.attrs)
    // 插槽(非响应式对象)
    console.log(context.slots)
    // 发出的事件(方法)
    console.log(context.emit)
  }
}
Copy after login

When setup() is used together with the option API, in setup() Do not use this inside the function, because the setup() function is called before the options are parsed, and the data, computed and methods component options cannot be accessed within the setup() function. The following code is an error example:

setup() {
  function onClick() {
      console.log(this) // 并不是预期的this
  }
}
Copy after login

The above is the detailed content of What are the timing and precautions for setup execution in Vue3. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template