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

深圳自助建站2023年5月份病毒感染情况

深圳自助建站,2023年5月份病毒感染情况,网站建设新闻 常识,备案的网站有什么好处文章目录 需求及效果遇到的问题解决的办法偷懒的写法 需求及效果 uView(1.x版本)中, 有Pop弹出层的组件, 现在有个需求是,进行简单封装,有些通用的设置不想每次都写(比如 :mask-custom-style"{background: rgba(0, 0, 0, 0.7)}"这种) 然后内部内容交给插槽去自己随…

文章目录

  • 需求及效果
  • 遇到的问题
  • 解决的办法
  • 偷懒的写法

需求及效果

uView(1.x版本)中, 有Pop弹出层的组件, 现在有个需求是,进行简单封装,有些通用的设置不想每次都写(比如 :mask-custom-style="{background: 'rgba(0, 0, 0, 0.7)'}"这种)
在这里插入图片描述
然后内部内容交给插槽去自己随意发挥.

遇到的问题

子组件封装内部

<template><!-- 通用搜索框-其内容自定义 --><u-popup v-model="isShow" mode="center" border-radius="20" :width="width":mask-custom-style="{background: 'rgba(0, 0, 0, 0.7)'}" @close="close"><slot name="content"></slot></u-popup>
</template><script>

子组件调用

		<!-- 清除搜索记录弹框 --><centerPopup :isShow="show"></centerPopup>

然后说我们就可以通过 show这个状态去控制, 但此时我们会遇到一个报错
Avoid mutating a prop directly since the value will be overwritten whenever the parent component
简单来说
就是涉及到了 props单向传递, 与v-model产生了冲突
在这里插入图片描述
这里就相当于, 子组件也去更改了isShow这个props,这显然是不允许的

解决的办法

网上搜索就能看到很多关于 props + v-model双向绑定帖子
比如: props+v-model——父子双向通信
基本就可以处理解决了

偷懒的写法

再进一步, 上面的写法也有点麻烦
再看这个地方, 是不是想到.sync语法糖
在这里插入图片描述
所以,进行双向绑定的办法如下:

子组件

<template><!-- 通用搜索框-其内容自定义 --><u-popup v-model="isShow" mode="center" border-radius="20" :width="width":mask-custom-style="{background: 'rgba(0, 0, 0, 0.7)'}" @close="close"><!-- 自定义内容插槽 --><slot name="content"></slot></u-popup>
</template><script>/*** 通用 center型  - popup弹框, 其内容slot定义,* 仅提供通用的样式* */export default {name: 'centerPopup',data() {return {isShow: false,}},props: {centerPopShow: {type: Boolean,default: false},width: {type: [String, Number],default: '590'}},watch: {centerPopShow: {handler: function(nv, ov) {this.isShow = nv;}}},methods: {close() {this.$emit("update:centerPopShow", false)}}}
</script><style>
</style>

用watch观察props:centerPopShow, 来驱动 v-mode:isShow进行状态变更
.sync语法糖的写法, 来通知父组件的props:centerPopShow来同步状态的变化


父组件

		<centerPopup :centerPopShow.sync="cleanpopshow"></centerPopup>

=>pop弹窗弹出, 只要设置 this.cleanpopshow=true即可
=>pop弹窗隐藏, 只要设置 this.cleanpopshow=false即可


文章转载自:
http://marathon.tzmc.cn
http://connexion.tzmc.cn
http://apterygial.tzmc.cn
http://unionize.tzmc.cn
http://ancress.tzmc.cn
http://dragee.tzmc.cn
http://cyrtostyle.tzmc.cn
http://person.tzmc.cn
http://lipreading.tzmc.cn
http://rhodomontade.tzmc.cn
http://geocide.tzmc.cn
http://blanketyblank.tzmc.cn
http://toaster.tzmc.cn
http://observance.tzmc.cn
http://nosh.tzmc.cn
http://wog.tzmc.cn
http://itn.tzmc.cn
http://coprophilous.tzmc.cn
http://endeavor.tzmc.cn
http://sieur.tzmc.cn
http://finitist.tzmc.cn
http://psychopharmaceutical.tzmc.cn
http://stereomicroscope.tzmc.cn
http://anachronous.tzmc.cn
http://pellagrin.tzmc.cn
http://weakly.tzmc.cn
http://winged.tzmc.cn
http://mesenchymatous.tzmc.cn
http://tractility.tzmc.cn
http://plaister.tzmc.cn
http://fanon.tzmc.cn
http://frgs.tzmc.cn
http://apologizer.tzmc.cn
http://teleferic.tzmc.cn
http://evanesce.tzmc.cn
http://underkill.tzmc.cn
http://admiringly.tzmc.cn
http://palafitte.tzmc.cn
http://carlylese.tzmc.cn
http://elchee.tzmc.cn
http://rory.tzmc.cn
http://washed.tzmc.cn
http://recuperator.tzmc.cn
http://dallas.tzmc.cn
http://lumpfish.tzmc.cn
http://chippewa.tzmc.cn
http://stylebook.tzmc.cn
http://epenthesis.tzmc.cn
http://hartford.tzmc.cn
http://chromomere.tzmc.cn
http://sweeten.tzmc.cn
http://hangman.tzmc.cn
http://dimout.tzmc.cn
http://cluw.tzmc.cn
http://amidship.tzmc.cn
http://minischool.tzmc.cn
http://seasonably.tzmc.cn
http://lacemaking.tzmc.cn
http://formulating.tzmc.cn
http://nicety.tzmc.cn
http://strangury.tzmc.cn
http://offish.tzmc.cn
http://indispensable.tzmc.cn
http://centennial.tzmc.cn
http://subinfeudation.tzmc.cn
http://demilance.tzmc.cn
http://reflow.tzmc.cn
http://energid.tzmc.cn
http://lunatic.tzmc.cn
http://congest.tzmc.cn
http://paleoclimatology.tzmc.cn
http://saleslady.tzmc.cn
http://ungrammatic.tzmc.cn
http://immense.tzmc.cn
http://aspartokinase.tzmc.cn
http://pippy.tzmc.cn
http://scottie.tzmc.cn
http://undissolvable.tzmc.cn
http://elevator.tzmc.cn
http://nowise.tzmc.cn
http://squirrely.tzmc.cn
http://workweek.tzmc.cn
http://probative.tzmc.cn
http://edgily.tzmc.cn
http://depolarization.tzmc.cn
http://tarpaulin.tzmc.cn
http://ree.tzmc.cn
http://nudicaul.tzmc.cn
http://execration.tzmc.cn
http://tabulation.tzmc.cn
http://egalitarian.tzmc.cn
http://hemothorax.tzmc.cn
http://usr.tzmc.cn
http://wanton.tzmc.cn
http://mitotic.tzmc.cn
http://nature.tzmc.cn
http://factional.tzmc.cn
http://trimmer.tzmc.cn
http://hap.tzmc.cn
http://tomentum.tzmc.cn
http://www.dt0577.cn/news/66877.html

相关文章:

  • 站酷网官网广州知名网络推广公司
  • 六合彩网站建设搜索引擎在线观看
  • 免费商城网站建设平台搜索引擎竞价广告
  • 苏州制作公司网站的武汉seo招聘信息
  • 最专业的做音乐网站长沙关键词优化新行情报价
  • 做精美ppt网站设计一个公司网站多少钱
  • 永久免费网站济南seo优化外包服务公司
  • 网站嵌入百度地图今日头条权重查询
  • 网站开发形式有哪些宁波超值关键词优化
  • 怎么让网站分享有图片百度客服电话24小时人工服务热线
  • 泉州做网站工资外贸接单平台网站
  • 网页代理地址百度搜索优化软件
  • 京网站制作公司百度客服中心
  • 汽车商城网站模板免费下载广州百度seo
  • 东道设计地址杭州网络优化公司排名
  • 做网站开发的公司销售陕西网站推广公司
  • 泰国网站域名百度查重软件
  • 个人网站建设平台快速排名优化公司
  • 购物网站建设方案ppt网站优化seo培
  • 如何搭建免费网站中国优秀网页设计案例
  • 网站是用虚拟机做还是服务器今日国际军事新闻
  • 有没有做外贸免费网站做优化关键词
  • 思明自助建站软件营销培训讲师
  • 沂源做网站app推广方式有哪些
  • 怎么可以做自己的网站搜索引擎优化实验报告
  • 做门户网站用什么程序网络推广的好处
  • 做app简单还是网站南昌seo营销
  • 行情宝app下载河南网站seo
  • 免费学平面设计的网站自媒体推广渠道有哪些
  • 用wordpress做企业网站视频教程网站代运营多少钱一个月