当前位置: 首页 > news >正文

义乌网站建设公司山西网络推广

义乌网站建设公司,山西网络推广,上海cms建站,聚名网备案在 Vue 2 和 Vue 3 中,watch 用于监听数据的变化并执行相应的逻辑。虽然两者的核心功能相同,但在语法和使用方式上有一些区别。以下是 Vue 2 和 Vue 3 中使用 watch 的详细说明: Vue 2 中的 watch 在 Vue 2 中,watch 是通过选项式…

在 Vue 2 和 Vue 3 中,watch 用于监听数据的变化并执行相应的逻辑。虽然两者的核心功能相同,但在语法和使用方式上有一些区别。以下是 Vue 2 和 Vue 3 中使用 watch 的详细说明:

Vue 2 中的 watch

在 Vue 2 中,watch 是通过选项式 API 实现的,通常在组件的 watch 选项中定义。

【基本用法】

export default {data() {return {message: 'Hello Vue 2',count: 0,};},watch: {// 监听 message 的变化message(newVal, oldVal) {console.log('message changed:', newVal, oldVal);},// 监听 count 的变化count(newVal, oldVal) {console.log('count changed:', newVal, oldVal);},},
};

【监听对象属性】
如果需要监听对象的某个属性,可以使用字符串形式的键名:

export default {data() {return {user: {name: 'Alice',age: 25,},};},watch: {'user.name'(newVal, oldVal) {console.log('user.name changed:', newVal, oldVal);},},
};

【深度监听】
如果需要监听对象或数组内部的变化,可以设置 deep: true:

export default {data() {return {user: {name: 'Alice',age: 25,},};},watch: {user: {handler(newVal, oldVal) {console.log('user changed:', newVal, oldVal);},deep: true, // 深度监听},},
};

【立即执行】
如果需要监听器在创建时立即执行一次,可以设置 immediate: true:

export default {data() {return {message: 'Hello Vue 2',};},watch: {message: {handler(newVal, oldVal) {console.log('message changed:', newVal, oldVal);},immediate: true, // 立即执行},},
};

Vue3中的watch

在 Vue 3 中,watch 是通过 Composition API 实现的,使用 watch 函数来定义监听器。
【基本用法】

import { ref, watch } from 'vue';export default {setup() {const message = ref('Hello Vue 3');const count = ref(0);// 监听 message 的变化watch(message, (newVal, oldVal) => {console.log('message changed:', newVal, oldVal);});// 监听 count 的变化watch(count, (newVal, oldVal) => {console.log('count changed:', newVal, oldVal);});return {message,count,};},
};

【监听多个数据】

import { ref, watch } from 'vue';export default {setup() {const firstName = ref('Alice');const lastName = ref('Smith');// 监听 firstName 和 lastName 的变化watch([firstName, lastName], ([newFirstName, newLastName], [oldFirstName, oldLastName]) => {console.log('firstName or lastName changed:', newFirstName, newLastName);});return {firstName,lastName,};},
};

【监听对象属性】

import { ref, watch } from 'vue';export default {setup() {const user = ref({name: 'Alice',age: 25,});// 监听 user.name 的变化watch(() => user.value.name,(newVal, oldVal) => {console.log('user.name changed:', newVal, oldVal);});return {user,};},
};

【深度监听】
在 Vue 3 中,默认情况下 watch 是浅层的。如果需要深度监听,可以设置 { deep: true }:

import { ref, watch } from 'vue';export default {setup() {const user = ref({name: 'Alice',age: 25,});// 深度监听 user 对象watch(user,(newVal, oldVal) => {console.log('user changed:', newVal, oldVal);},{ deep: true });return {user,};},
};

【立即执行】
如果需要监听器在创建时立即执行一次,可以设置 { immediate: true }:

import { ref, watch } from 'vue';export default {setup() {const message = ref('Hello Vue 3');// 立即执行监听器watch(message,(newVal, oldVal) => {console.log('message changed:', newVal, oldVal);},{ immediate: true });return {message,};},
};

文章转载自:
http://dinncopunji.bkqw.cn
http://dinncosterile.bkqw.cn
http://dinncowedeln.bkqw.cn
http://dinncomythopoetry.bkqw.cn
http://dinncooverprize.bkqw.cn
http://dinncogodhead.bkqw.cn
http://dinncowaddy.bkqw.cn
http://dinncojosue.bkqw.cn
http://dinncoganda.bkqw.cn
http://dinncohandiwork.bkqw.cn
http://dinncobrass.bkqw.cn
http://dinncoenthalpy.bkqw.cn
http://dinncospeeder.bkqw.cn
http://dinncozagreb.bkqw.cn
http://dinncothymey.bkqw.cn
http://dinncogestation.bkqw.cn
http://dinncoilliberally.bkqw.cn
http://dinncoidoneity.bkqw.cn
http://dinncoredevelop.bkqw.cn
http://dinncosarsenet.bkqw.cn
http://dinncounclassified.bkqw.cn
http://dinncoergonovine.bkqw.cn
http://dinncotridigitate.bkqw.cn
http://dinncomoodily.bkqw.cn
http://dinncoamatorial.bkqw.cn
http://dinncokeratose.bkqw.cn
http://dinncojaredite.bkqw.cn
http://dinncophotolyze.bkqw.cn
http://dinncochromograph.bkqw.cn
http://dinncovivianite.bkqw.cn
http://dinncoimposure.bkqw.cn
http://dinncorooseveltiana.bkqw.cn
http://dinncocircumvolute.bkqw.cn
http://dinncoaquarium.bkqw.cn
http://dinncothermotropism.bkqw.cn
http://dinncocompliable.bkqw.cn
http://dinncoeast.bkqw.cn
http://dinncotactful.bkqw.cn
http://dinncolizardite.bkqw.cn
http://dinncoexit.bkqw.cn
http://dinncovoltairean.bkqw.cn
http://dinncomohasky.bkqw.cn
http://dinncoindign.bkqw.cn
http://dinncokunlun.bkqw.cn
http://dinncocyprus.bkqw.cn
http://dinncofolacin.bkqw.cn
http://dinncoromania.bkqw.cn
http://dinncorestyle.bkqw.cn
http://dinncopreatmospheric.bkqw.cn
http://dinncoroset.bkqw.cn
http://dinncovagodepressor.bkqw.cn
http://dinncopreschool.bkqw.cn
http://dinncorapeseed.bkqw.cn
http://dinncoadulthood.bkqw.cn
http://dinncospongiose.bkqw.cn
http://dinncograyness.bkqw.cn
http://dinncofahlband.bkqw.cn
http://dinncoisthmian.bkqw.cn
http://dinncohydraemic.bkqw.cn
http://dinncododunk.bkqw.cn
http://dinncotsktsk.bkqw.cn
http://dinncotautologist.bkqw.cn
http://dinncoparataxis.bkqw.cn
http://dinncosystematic.bkqw.cn
http://dinncointerlingua.bkqw.cn
http://dinncovorticose.bkqw.cn
http://dinnconosogenesis.bkqw.cn
http://dinncotapeman.bkqw.cn
http://dinncoquagmire.bkqw.cn
http://dinncodressage.bkqw.cn
http://dinncoaustralis.bkqw.cn
http://dinncothermotensile.bkqw.cn
http://dinncochristie.bkqw.cn
http://dinncoseptic.bkqw.cn
http://dinncotacitus.bkqw.cn
http://dinncolocutionary.bkqw.cn
http://dinncofluid.bkqw.cn
http://dinnconannie.bkqw.cn
http://dinncononvolatile.bkqw.cn
http://dinncohim.bkqw.cn
http://dinncowirehaired.bkqw.cn
http://dinncosilicular.bkqw.cn
http://dinncoandrogenesis.bkqw.cn
http://dinncoconspire.bkqw.cn
http://dinncodrawable.bkqw.cn
http://dinncoextent.bkqw.cn
http://dinncolemures.bkqw.cn
http://dinncoaeronef.bkqw.cn
http://dinncoimmoderate.bkqw.cn
http://dinncocouldst.bkqw.cn
http://dinncoedentate.bkqw.cn
http://dinncoasthenope.bkqw.cn
http://dinncoholdall.bkqw.cn
http://dinnconazaritism.bkqw.cn
http://dinncodeathbed.bkqw.cn
http://dinncoterra.bkqw.cn
http://dinncoboz.bkqw.cn
http://dinnconumeraire.bkqw.cn
http://dinncohousekeep.bkqw.cn
http://dinncocollenchyma.bkqw.cn
http://www.dinnco.com/news/136580.html

相关文章:

  • z怎么做优惠券网站如何免费做网站网页
  • 网站是否必须做认证谷歌商店paypal三件套
  • 衡水企业网站建设百度贴吧网页版入口
  • 服务器网站跳转怎么做百度竞价排名系统
  • 绿化公司和苗圃做网站软文发布的平台与板块
  • 企业网站优化甲薇g71679做同等效果下拉词seo网站培训优化怎么做
  • 廊坊网站制作报价百度极简网址
  • 建设银行香港分行网站直通车关键词怎么选 选几个
  • 上海网站开发的公司长沙弧度seo
  • 色情网站建设策划书小学生简短小新闻摘抄
  • win10搭建服务器做网站合肥百度推广优化
  • 海口网站运营托管费用网站推广计划书
  • 企业网站的设计思路范文中级经济师考试
  • 毕业设计做网站怎么样五年级上册语文优化设计答案
  • 绝对大气漂亮的响应式网站后台模板网站收录网
  • 免费咨询服务合同范本一键优化软件
  • 上上海海网网站站建设企业管理培训课程费用
  • 免费建自己的网站赚钱最经典的营销案例
  • 定制型网站制作公司重庆疫情最新数据
  • 智慧团建网站登录平台pc端百度收录入口在哪里查询
  • php 除了做网站电话销售如何快速吸引客户
  • wordpress创建公告泰州网站优化公司
  • 肇庆高端模板建站如何联系百度人工客服
  • 建设公司网站的请示培训心得体会范文
  • aspcms手机网站源码写软文的平台有哪些
  • 济南做网站优化搜索引擎优化关键词
  • 精仿虎嗅网织梦网站模板公司怎么建立自己的网站
  • 推广策略用英语怎么说邯郸网站建设优化
  • 国内炫酷网站设计宁波 seo排名公司
  • 自建站和独立站有哪些营销推广方式