概述
setup
- 理解:Vue3.0中一个新的配置项,值为一个函数。
- setup是所有Composition API(组合API)“ 表演的舞台 ”。
- 组件中所用到的:数据、方法等等,均要配置在setup中。
- setup函数的两种返回值:
- 若返回一个对象,则对象中的属性、方法, 在模板中均可以直接使用。(重点关注!)
- 若返回一个渲染函数:则可以自定义渲染内容。(了解)
- 注意点:
- 尽量不要与Vue2.x配置混用
- Vue2.x配置(data、methos、computed…)中可以访问到setup中的属性、方法。
- 但在setup中不能访问到Vue2.x配置(data、methos、computed…)。
- 如果有重名, setup优先。
- setup不能是一个async函数,因为返回值不再是return的对象, 而是promise, 模板看不到return对象中的属性。(后期也可以返回一个Promise实例,但需要Suspense和异步组件的配合)
- 尽量不要与Vue2.x配置混用
<template>
<h1>一个人的信息</h1>
<h2>姓名:{{ name }}</h2>
<h2>年龄:{{ age }}</h2>
<h2>性别:{{ sex }}</h2>
<h2>a的值是:{{ a }}</h2>
//优先输出setup返回的a
<button @click="sayHello">说话(Vue3所配置的——sayHello)</button>
<br />
<br />
<button @click="sayWelcome">说话(Vue2所配置的——sayWelcome)</button>
<br />
<br />
<button @click="test1">测试一下在Vue2的配置中去读取Vue3中的数据、方法</button>
<br />
<br />
<button @click="test2">
测试一下在Vue3的setup配置中去读取Vue2中的数据、方法
</button>
</template>
<script>
export default {
name: "App",
data() {
return {
sex: "男",
a: 100,
};
},
methods: {
sayWelcome() {
alert("欢迎来到尚硅谷学习");
},
test1() {
console.log(this.sex);
console.log(this.name);
console.log(this.age);
console.log(this.sayHello);
},
},
//此处只是测试一下setup,暂时不考虑响应式的问题。
setup() {
//数据
let name = "张三";
let age = 18;
let a = 200;
//方法
function sayHello() {
alert(`我叫${name},我${age}岁了,你好啊!`);
}
function test2() {
console.log(name);
console.log(age);
console.log(sayHello);
console.log(this.sex);
//undefined
console.log(this.sayWelcome);
//undefined
}
//返回一个对象(常用)
return {
name,
age,
sayHello,
test2,
a,
};
//返回一个函数(渲染函数)
// return ()=> h('h1','尚硅谷')
},
};
</script>
<style>
</style>
setup的两个注意点
-
setup执行的时机
- 在beforeCreate之前执行一次,this是undefined。
-
setup的参数
- props:值为对象,包含:组件外部传递过来,且组件内部声明接收了的属性。
- context:上下文对象
- attrs: 值为对象,包含:组件外部传递过来,但没有在props配置中声明的属性, 相当于
this.$attrs
。 - slots: 收到的插槽内容, 相当于
this.$slots
。 - emit: 分发自定义事件的函数, 相当于
this.$emit
。
- attrs: 值为对象,包含:组件外部传递过来,但没有在props配置中声明的属性, 相当于
最后
以上就是大气蚂蚁为你收集整理的vue3-setup的全部内容,希望文章能够帮你解决vue3-setup所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复