setup语法糖

简介: setup语法糖

在vue3.0中,setup函数中的变量必须return出来才能给template使用,3.2中使用setup语法糖无需return变量就可以在template中使用了,而且引入的组件可以直接使用,无需再通过components进行注册。setup 语法糖中可直接使用 await,不需要写 async , setup 会自动变成 async setup

父子组件传值props,子组件给父组件传值emit

父组件

<script setup>
  import HelloWorld from "./components/HelloWorld.vue"
  import {ref} from "vue"
  const msg=ref("父组件传值")
  let message=ref("")
  const go=(val)=>{
    message.value=val
  }
</script>
<template>
 <HelloWorld :msg="msg" @event="go"></HelloWorld>
  {{message}}
</template>

子组件

<script setup>
    import {ref} from "vue"
    const msg=ref("父组件传值")
    const emit=defineEmits(["event"])
    const btn=()=>{
        emit("event","子组件的值")
    }
</script>
<template>
    <h>{{msg}}</h><br>
    <h>我是子组件</h><br>
    <button @click="btn">子组件传值</button>
</template>

provide 和 inject 祖孙传值

父组件

<script setup>
  import HelloWorld from "./components/HelloWorld.vue"
  import {ref} from "vue"
  import {provide} from "vue"
  const name=ref("张飞")
  provide("provideData",{
    name
  })
</script>
<template>
 <HelloWorld ></HelloWorld>
</template>

子组件

<script setup>
    import {inject} from "vue"
  const provideData=inject("provideData")
</script>
<template>
    <h>{{provideData.name}}</h><br>
</template>

toRefs的使用

只能搭配Reactive,不能搭配Ref

<script setup>
  import HelloWorld from "./components/HelloWorld.vue"
  import {ref,reactive,toRefs} from "vue"
  const state=reactive({
    username:"root"
  })
  const {username}=toRefs(state)
  const change=()=>{
   username.value=""
  }
</script>
<template>
 {{username}}<br>
  <button @click="change">改变</button>
</template>

Watch函数(这个函数代码为了省事引用某博文)

  watch(
            ()=>message.value,
            (val,preVal)=>{
                //val为修改后的值,preVal为修改前的值
                console.log("message",val,preVal)
            },
            {
                //如果加了这个参数,值为true的话,就消除了惰性,watch会在创建后立即执行一次
                //那么首次执行,val为默认值,preVal为undefined
                immediate:true,
                //这个参数代表监听对象时,可以监听深度嵌套的对象属性
                //比如message是一个对象的话,可以监听到message.a.b.c,也就是message下的所有属性
                deep:true,
            }
        )
   watch(
            ()=>[message.value,count.value],
            ([messageVal,messagePreVal],[countVal,countPreVal])=>{
                //监听多个源用数组传入
                console.log("messageVal,messagePreVal",messageVal,messagePreVal)
                console.log("countVal,countPreVal",countVal,countPreVal)
            },
        )
相关文章
|
2月前
|
JavaScript 前端开发
vue3.x的setup语法糖
vue3.x的setup语法糖
221 61
|
26天前
|
JavaScript API
优雅的setup(函数式)写法+封装
【10月更文挑战第15天】优雅的 `setup` 写法和封装可以让我们更好地组织和管理组件的逻辑,提高开发效率和代码质量。你可以根据自己的项目需求,不断探索和实践更合适的封装方式。
38 2
|
3月前
|
JavaScript 前端开发 API
Vue3 中 setup 语法糖做了哪些骚操作?
Vue3 中 setup 语法糖做了哪些骚操作?
|
3月前
|
JavaScript 前端开发 API
Vue3之script-setup 语法糖
本文介绍了Vue 3的`<script setup>`语法糖,通过示例代码演示了如何在组件中使用`<script setup>`以及相关的Vue 3 Composition API函数和特性,如响应式引用、生命周期钩子、CSS模块等,并展示了组件间的通信和样式应用。
32 0
Vue3之script-setup 语法糖
|
3月前
|
JavaScript API 调度
Pinia进阶:优雅的setup(函数式)写法+封装
相信在座各位假如使用Vue生态开发项目情况下,对Pinia状态管理库应该有所听闻或正在使用,假如还没接触到Pinia,这篇文章可以帮你快速入门,并如何在企业项目中更优雅封装使用。
58 0
|
6月前
|
JavaScript 前端开发 API
在VUE3的setup函数中如何引用
在VUE3的setup函数中如何引用
|
6月前
|
JavaScript 前端开发 测试技术
vue的setup语法糖?
vue的setup语法糖?
27 1
|
6月前
|
JavaScript
Vue 使用 setup 语法糖
Vue 使用 setup 语法糖
|
6月前
|
JavaScript
vue中setup语法糖的优点
vue中setup语法糖的优点
|
6月前
|
JavaScript
vue的sync语法糖的使用
vue的sync语法糖的使用
58 0