v-model底层实现,案例演示

vue3中 v-model

首先我们要理解一个概念就是,子组件是不能直接修改父组件的值的,是通过调用父类的某个方法,让父组件去修改对应值。v-model相当于免去了要声明这么一个函数,vue自动帮我们修改。

传值给子类
子类改变值
通知父类方法
父类去改变这个值

声明一个父组件



<template>
    <div>父组件</div>
    <div class="temperature">温度:{{ temperature }}</div>
    <div class="humidity">湿度:{{ humidity }}</div>
    <button type="button" @click="temperature+=1">温度+1</button>
    <button type="button" @click="humidity+=1">湿度+1</button>
    <Son v-model="temperature" v-model:humidity="humidity"></Son>
</template>
<script setup lang="ts">
import { ref } from 'vue';
import Son from '@/components/son.vue'
const temperature = ref(0)
const humidity = ref(0)

</script>
<style scoped>

</style>
    

子组件



<template>
    <div>子组件</div>
    <div class="temperature">温度:{{ Prop.modelValue }}</div>
    <div class="humidity">湿度:{{ Prop.humidity }}</div>
    <button type="button" @click="emit('update:modelValue', Prop.modelValue+1)">温度+1</button>
    //当点击事件发生后 期望父组件的该变量改变的值 Prop.modelValue+1
    <button type="button" @click="emit('update:humidity',Prop.humidity+1)">湿度+1</button>
</template>
<script setup lang="ts">
import { ref } from 'vue';
const Prop = defineProps(['modelValue','humidity'])
const emit = defineEmits(['update:modelValue','update:humidity'])
</script>
<style scoped>

</style>
    

在这里插入图片描述

可以实现父组件和子组件同时控制温度和湿度

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值