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

营销型企业网站建设价格哪个推广平台推广最靠谱

营销型企业网站建设价格,哪个推广平台推广最靠谱,安徽网站建设案例,网站建设需要注意的关键细节「本专栏是我在学习 Vue3 过程中的总结与分享,旨在帮助初学者快速上手 Vue3。由于我也在持续学习中,如果有任何疏漏或错误,欢迎大家在评论区指正,我们一起进步!」 提示:使用该文档学习vue3需要有一些vue和v…

「本专栏是我在学习 Vue3 过程中的总结与分享,旨在帮助初学者快速上手 Vue3。由于我也在持续学习中,如果有任何疏漏或错误,欢迎大家在评论区指正,我们一起进步!」
提示:使用该文档学习vue3需要有一些vue和vue2的基础才可以更好的学习噢~~
版权:未经允许,禁止转载!
鼓励:每一次自我怀疑,都是成长的信号,它在提醒你正站在突破的边缘。大胆向前,你的能力远超想象,自信会为你推开成功之门。
————————————————

文章目录

  • 前言
    • 一、props的子父级间的通信
    • 二、自定义组件
    • 三、mitt(跨组件通信)
      • 3.1 安装mitt
      • 3.2 配置mitt文件
      • 3.3 测试功能
    • 四、v-model实现组件通信
    • 五、attrs语法
    • 六、refs语法
    • 七、$parent语法
  • 总结


前言

提示:本章是vue3组件间联系的语法学习,也是相当重要的内容,大家加把劲,就快要学完了!

在Vue3开发中,组件通信是构建复杂应用的核心之一。无论是父子组件间的数据传递,还是跨层级组件的状态共享,掌握高效的通信方式都能让代码更清晰、维护更轻松。Vue3提供了多种通信方式,如propsemitprovide/injectv-model以及attrs等,每种方式都有其适用场景。本文将带你全面了解这些方法,帮助你在实际开发中灵活运用。


一、props的子父级间的通信

  • 作用:父组件通过 props 向子组件传递数据。
  • 优势
    • 简单易用,适合父子组件之间的单向数据流。
    • 支持类型检查和默认值,增强代码健壮性。
    • 数据流清晰,便于维护。

示例代码:

Father.vue

<template><div class="father"><h3>父组件</h3><h4>汽车:{{car}}</h4><h4 v-if="toy">子给的玩具:{{toy}}</h4><!-- 父传子 不需要写函数 --><!-- 子传父 需要写一个函数 --><Child :car = 'car' :sendToy = 'getToy' ></Child></div>
</template><script setup lang="ts" name="Father">
import { ref } from 'vue';
import Child from './Child.vue'//数据let car = ref('奔驰')let toy = ref('')//方法function getToy(value:string){toy.value = value}
</script><style scoped>.father{background-color:rgb(165, 164, 164);padding: 20px;border-radius: 10px;}
</style>

Child.vue

<template><div class="child"><h3>子组件</h3><h4>玩具:{{toy}}</h4><h4>父亲给的车:{{car}}</h4><button @click="sendToy(toy)">传递给父级玩具</button></div>
</template><script setup lang="ts" name="Child">
import { ref } from 'vue';//数据let toy = ref('奥特曼')// 用props接收父级传来的数据
defineProps(['car','sendToy'])
</script><style scoped>.child{background-color: skyblue;padding: 10px;box-shadow: 0 0 10px black;border-radius: 10px;}
</style>

二、自定义组件

  • 作用:子组件通过 $emit 触发自定义事件,父组件监听并处理。
  • 优势
    • 实现子组件向父组件传递数据或触发行为。
    • 事件驱动,灵活性强。
    • 适合子组件需要通知父组件的场景。

示例代码:

Father.vue

<template><div class="father"><h3>父组件</h3><h4 v-show="toy">子级给的数据:{{toy}}</h4><!-- 通过自定义组件将子级的数据传递给父级 --><!-- 一般使用‘-’ 而不是驼峰命名 --><Child @send-toy="getToy"></Child></div>
</template><script setup lang="ts" name="Father">
import { ref } from 'vue';
import Child from './Child.vue'const toy = ref('')
function getToy(value:string){toy.value = value
}
</script><style scoped>.father{background-color:rgb(165, 164, 164);padding: 20px;border-radius: 10px;}
</style>

Child.vue

<template><div class="child"><h3>子组件</h3><button @click="$emit('send-toy',toy)">点我将数据送给父级</button></div>
</template><script setup lang="ts" name="Child">
import { ref } from 'vue';
const toy = ref('奥特曼')
// 需要使用数组的形式才可以
let emit = defineEmits(['send-toy'])
</script>
<style scoped>.child{background-color: skyblue;padding: 10px;box-shadow: 0 0 10px black;border-radius: 10px;}
</style>

三、mitt(跨组件通信)

  • 作用:一个轻量级的事件总线库,用于任意组件间的通信。
  • 优势
    • 不依赖组件层级关系,适合跨组件通信。
    • 简单易用,解耦性强。
    • 适合小型项目或不需要状态管理的场景。

3.1 安装mitt

npm i mitt

新建文件:src\utils\emitters.ts

3.2 配置mitt文件

emitters.ts

//  引入
import mitt from "mitt";
//  调用
//  emitter 可以绑定/触发事件
const emitter = mitt()/* 
// 绑定事件
emitter.on('test1', () => {console.log('test1');
})
// 触发事件
emitter.emit('test1')
// 解绑事件
emitter.off('test1')
// 全部解绑
emitter.all.clear() 
*/// 暴露
export default emitter

3.3 测试功能

实例代码:

Child.vue

<template><div class="child"><h3>子组件</h3><h4 v-show="toy">叔叔给孩子的玩具:{{toy}}</h4></div>
</template><script setup lang="ts" name="Child">
import emitter from '@/utils/emitters';
import { onUnmounted, ref } from 'vue';
const toy = ref('')
emitter.on('send-toy',(value:any) => {toy.value = value
})
// 绑定之后在销毁之后必须把事件解绑了噢!!!
onUnmounted(()=>{emitter.off('send-toy')
})
</script><style scoped>.child{background-color: skyblue;padding: 10px;box-shadow: 0 0 10px black;border-radius: 10px;}
</style>

Uncle.vue

<template><div class="uncle"><h3>叔组件</h3><button @click="sendToy">点击送给孩子玩具</button></div>
</template><script setup lang="ts" name="Child">
import emitter from '@/utils/emitters';
import { ref } from 'vue';
// 叔叔用emit方法给孩子送玩具
let toy = ref('娃娃')
function sendToy(){emitter.emit('send-toy',toy.value)
}
</script><style scoped>.uncle{background-color: orange;padding: 10px;box-shadow: 0 0 10px black;border-radius: 10px;}
</style>

Father.vue

<template><div class="father"><h3>父组件</h3><Child></Child><br><Uncle></Uncle></div>
</template><script setup lang="ts" name="Father">
import { ref } from 'vue';
import Child from './Child.vue'
import Uncle from './Uncle.vue';
</script><style scoped>.father{background-color:rgb(165, 164, 164);padding: 20px;border-radius: 10px;}
</style>

四、v-model实现组件通信

  • 作用:实现父子组件之间的双向数据绑定。
  • 优势
    • 简化父子组件间的双向数据同步。
    • 语法简洁,易于理解。
    • 适合表单控件等需要双向绑定的场景。

示例代码:

Child.vue

<template><div class="child"><input type="text" :value="modelValue" @input="emit('update:modelValue',(<HTMLInputElement>$event.target).value)"></div>
</template><script setup lang="ts" name="Child">
defineProps(['modelValue'])
const emit = defineEmits(['update:modelValue'])
</script><style scoped>input{background-color: skyblue;box-shadow: 0 0 10px black;border-radius: 10px;}
</style>

Father.vue

<template><div class="father"><h3>父组件</h3><!-- <input type="text" v-model="username"> --><!-- v-model底层原理 --><!-- <input type="text" :value="username" @input="username = (<HTMLInputElement>$event.target).value" > --><!-- v-model 用在组件上 --><!-- :modelValue  @update:modelValue  --><!-- <Child :modelValue="username" @update:modelValue="username = $event"></Child> --><Child v-model="username"></Child></div>
</template><script setup lang="ts" name="Father">
import { ref } from 'vue';
import Child from './Child.vue'
let username = ref('zhangsan')
</script><style scoped>.father{background-color:rgb(165, 164, 164);padding: 20px;border-radius: 10px;}
</style>

注意 v-model:ming=“passwad” 这样取的props就不用写modelValue,而是ming 并且修改名字 一个组件上可以绑定多个v-model


五、attrs语法

  • 作用:父组件传递的未在子组件 props 中声明的属性,可以通过 $attrs 访问。
  • 优势
    • 方便传递额外的属性或事件。
    • 减少重复代码,提高组件灵活性。
    • 适合高阶组件或封装通用组件时使用。

示例代码:

Father.vue

<template><div class="father"><h3>父组件</h3><h4>a:{{a}}</h4>	 <h4>b:{{b}}</h4>	 <h4>c:{{c}}</h4>	 <h4>d:{{d}}</h4>	<Child :a="a" :b="b" :c="c" :d="d" v-bind="{x:100,y:200}" :updateA="updateA"></Child> </div>
</template><script setup lang="ts" name="Father">
import { ref } from 'vue';
import Child from './Child.vue'function updateA(value:number){a.value += value
}let a = ref(1)
let b = ref(2)
let c = ref(3)
let d = ref(4)
</script><style scoped>.father{background-color:rgb(165, 164, 164);padding: 20px;border-radius: 10px;}
</style>

Child.vue

<template><div class="child"><h3>子组件</h3><!-- 用 $attrs来接收父组件给的数据和方法通过该中介传递给孙级 --><Grand v-bind="$attrs"></Grand></div>
</template><script setup lang="ts" name="Child">
import Grand from './Grand.vue';
</script><style scoped>.child{background-color: skyblue;box-shadow: 0 0 10px black;border-radius: 10px;padding: 15px;}
</style>

Grand.vue

<template><div class="grand"><h3>孙组件</h3>		<h4>a:{{a}}</h4>	 <h4>b:{{b}}</h4>	 <h4>c:{{c}}</h4>	 <h4>d:{{d}}</h4>	<h4>x:{{x}}</h4>	<h4>y:{{y}}</h4>	<button @click="updateA(6)">点我更改爷爷的A</button></div>
</template><script setup lang="ts" name="grand">
// $attrs实现了defineProps从爷爷到孙子的写法
defineProps(['a','b','c','d','x','y','updateA'])
</script><style scoped>.grand{background-color: orange;box-shadow: 0 0 10px black;border-radius: 10px;}
</style>

六、refs语法

  • 作用:父组件通过 $refs 直接访问子组件的实例或 DOM 元素。
  • 优势
    • 可以直接调用子组件的方法或访问其数据。
    • 适合需要直接操作子组件的场景。
    • 注意:过度使用可能导致代码耦合性增加。

示例代码:

Father.vue

<template><div class="father"><h3>父组件</h3><h4>父亲有:{{money}}元</h4><!-- 	 这个位置的参数必须是$refs --><!-- $refs就是所有含有ref组件的实例化对象 因此是一个对象数组 --><button @click="addBook($refs)">给孩子添加书本</button><Child ref="c1"></Child> <Daughter ref="d1"></Daughter></div>
</template><script setup lang="ts" name="Father">
import { ref } from 'vue';
import Child from './Child.vue'
import Daughter from './Daughter.vue';let money = ref(1000)
let c1 = ref()
let d1 = ref()// 为儿女的书本每次增加3本
function addBook(refs: any){for (const key in refs) {refs[key].book += 3		}
}
</script><style scoped>.father{background-color:rgb(165, 164, 164);padding: 20px;border-radius: 10px;}
</style>

Child.vue

<template><div class="child"><h3>儿子组件</h3><h4>儿子有:{{book}}本书</h4></div>
</template><script setup lang="ts" name="Child">
import { ref } from 'vue';let book = ref(3)
defineExpose({book})
</script><style scoped>.child{background-color: skyblue;box-shadow: 0 0 10px black;border-radius: 10px;padding: 15px;}
</style>

Daughter.vue

<template><div class="child"><h3>女儿组件</h3><h4>女儿有:{{book}}本书</h4></div>
</template><script setup lang="ts" name="Child">
import { ref } from 'vue';let book = ref(3)
defineExpose({book})
</script><style scoped>.child{background-color: orange;box-shadow: 0 0 10px black;border-radius: 10px;padding: 15px;}
</style>

七、$parent语法

  • 作用:子组件通过 $parent 直接访问父组件的实例。
  • 优势
    • 可以直接调用父组件的方法或访问其数据。
    • 适合简单场景下的父子组件交互。
    • 注意:过度使用可能导致组件耦合性增加,不利于维护。

示例代码:

Father.vue

<template><div class="father"><h3>父组件</h3><h4>父亲有:{{money}}元</h4><Child ref="c1"></Child> </div>
</template><script setup lang="ts" name="Father">
import { ref } from 'vue';
import Child from './Child.vue'let money = ref(1000)
let c1 = ref()
defineExpose({money})
</script><style scoped>.father{background-color:rgb(165, 164, 164);padding: 20px;border-radius: 10px;}
</style>

Child.vue

<template><div class="child"><h3>儿子组件</h3><h4>儿子有:{{book}}本书</h4><button @click="expendMoney($parent)">花父亲20块钱</button></div>
</template><script setup lang="ts" name="Child">
import { ref } from 'vue';let book = ref(3)// 儿子花父亲的钱
function expendMoney(parent: any){parent.money -= 20
}
</script><style scoped>.child{background-color: skyblue;box-shadow: 0 0 10px black;border-radius: 10px;padding: 15px;}
</style>

总结

  • propsemit:适合父子组件之间的单向或简单双向通信。
  • mitt:适合跨组件通信,解耦性强。
  • v-model:适合需要双向绑定的场景。
  • $attrs:适合透传属性或事件。
  • $refs$parent:适合直接操作组件实例,但需谨慎使用,避免过度耦合。

根据具体场景选择合适的通信方式,可以让代码更清晰、更易维护!

http://www.dtcms.com/wzjs/382654.html

相关文章:

  • 鲜花礼品店网站建设策划书如何做好搜索引擎优化工作
  • 公司网站哪家做的好seo权重是什么意思
  • 网站建设最好的教程厦门人才网app
  • 深圳专门做网站的公司有哪些全自动在线网页制作
  • h5前端开发独立站seo外链平台
  • vue 做pc网站可以吗建站之星网站
  • 广东金东建设工程公司网站搜索引擎营销原理
  • wordpress高亮代码添加行号百度 seo优化作用
  • ui设计师怎么做自己的网站网络营销推广的方法
  • 做网站后台数据库建设网址制作
  • 做网站能赚流量钱吗互联网广告营销是什么
  • seo学习网站周口网站seo
  • 杭州模板网站好中国没有限制的搜索引擎
  • 燕赵邯郸网站建设杭州seo服务公司
  • 鸭梨网站建设seoul是什么意思
  • 建设网站困难的解决办法河南郑州做网站的公司
  • 网站建设咨询公司链接下载
  • 上海专业网站制作公司杭州百度推广电话
  • 深圳网站设计公司发展历程佛山市seo推广联系方式
  • 网站搭建wordpress照片查询百度图片搜索
  • 汉川网站制作淘宝seo排名优化软件
  • 做网站设计制作的公司什么建站程序最利于seo
  • 做网站步骤详解产品推广方案模板
  • 让别人做网站的步骤青岛做网站的公司哪家好
  • 手机网站要域名吗分类信息网
  • 南和企业做网站湘潭网络推广
  • 辽宁省建设工程信息网官网新网站入口建一个外贸独立站大约多少钱
  • 网上做调查赚钱的网站有哪些济南seo优化公司助力网站腾飞
  • 常州溧阳建设工程管理中心网站百度博客收录提交入口
  • 本地搭建wordpress建站教程信息流广告模板