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

什么是社交电商平台网站功能优化的方法

什么是社交电商平台,网站功能优化的方法,展示型网站有哪些内容,wordpress怎么做二级导航写在前面: 这个用法是在使用组件和创建组件中 文章目录 介绍简单使用多个插槽省写默认/后备内容作用域插槽常用实例Element-ui的el-table 废弃用法slot attributeslot-scope attribute 介绍 我们在定义一些组件的时候,由于组件内文字想要自定义&#…
写在前面:
这个用法是在使用组件和创建组件中

文章目录

  • 介绍
  • 简单使用
  • 多个插槽
  • 省写
  • 默认/后备内容
  • 作用域插槽
  • 常用实例
    • Element-ui的el-table
  • 废弃用法
    • slot attribute
    • slot-scope attribute

介绍

我们在定义一些组件的时候,由于组件内文字想要自定义,而子和父是隔离的,所以就有了这样的需求,我们可以选用插槽来达到这样的效果

作用:让组件内部的结构支持自定义

简单使用

组件内部用slot占位
在SlotStudy组件,这里只是简单演示,组件定义了一个a标签,a的文字自定义。
在这里插入图片描述
父组件使用就是
在这里插入图片描述
效果
在这里插入图片描述

多个插槽

这样的默认插值是只能自定义一个位置的
如果想要多个的话我们想要指定name
子组件

<template><div><a><slot></slot></a><el-divider><slot name="title"></slot></el-divider></div>
</template>

父组件
v-slot:xx也提供了一个可以省写的#xx,效果是一样的。

<template><slot-study><template v-slot:default>slot插槽默认使用</template><template #title>指定name使用</template></slot-study>
</template>

效果
在这里插入图片描述

省写

v-slot:可以写成# ,在多个提到过

默认/后备内容

在子组件中如果一个自定义的地方一定想要传入内容,那么我们可以采用默认的方式来
子组件

    <el-divider><slot name="de">slot插槽默认使用</slot></el-divider>

父组件

      <template #de></template>

效果
在这里插入图片描述

作用域插槽

父子组件通过插槽传值的工具
如这样一个表格
在这里插入图片描述

我想通过删除按钮来删除这一行,就可以通过这个作用域插槽实现了

子组件
这里除了定义外,还使用了插槽获取这一行的数据
通过default来获取这一行的对象
然后将这一行的数据传递下去。

      <el-table-column label="操作"><template #default="scope"><slot :row="scope.row" :sss="'附带格外信息'"></slot></template></el-table-column>

父组件

    <slot-study :tables="tables"><template #default="obj"><button @click="remove(obj)">删除</button></template></slot-study>remove(val){console.log('删除',val)}

点击后的效果。

在这里插入图片描述

常用实例

Element-ui的el-table

当我们在element-ui想要替换渲染逻辑的时候,可以用插槽来

如在不同状态的时候展示不同的表格效果,那么我们可以

        <el-table-columnlabel="同步状态"><template v-slot:default="scope"><i :class="{'el-icon-loading':scope.row.status === 0}"/><div :class="scope.row.status | tc">{{ statuss[scope.row.status] }}</div></template></el-table-column>

通过插槽进行逻辑判断
最终呈现出不同的效果
在这里插入图片描述

格外的如果是用for循环来的<el-table-column,我们可以通过判断来进行指定单元格的渲染。
如下面案例
在tocrm的单元列的时候,进行格外的按钮渲染,其他框则是直接展示

      <el-table-columnv-for="column in columns":key="column.prop":prop="column.prop":label="column.label":width="column.width"><template v-slot:default="scope"><span v-if="column.prop === 'tocrm'"><span><el-switch v-model="scope.row.tocrm" @change="updateCRM(scope.row)"/></span></span><span v-else>{{ scope.row[column.prop] }}</span></template></el-table-column>

注意,如果用了插槽就无法进行备用/默认插槽了,就会出现没用内容的清空
在这里插入图片描述

废弃用法

slot attribute

直接使用特殊属性的 slot

<template><slot-study><template>slot插槽默认使用</template><template slot="title">指定name使用</template></slot-study>
</template>

slot-scope attribute

slot-scope特殊属性
作用就是作用域插槽的作用

    <slot-study :tables="tables"><template slot-scope="obj" slot="default"><button @click="remove(obj)">删除</button></template></slot-study>remove(val){console.log('删除',val)}

如果错误和补充,欢迎指出和补充


文章转载自:
http://dinncobowdlerism.bkqw.cn
http://dinncopendragon.bkqw.cn
http://dinncopicksome.bkqw.cn
http://dinncolooming.bkqw.cn
http://dinncotroika.bkqw.cn
http://dinncocycad.bkqw.cn
http://dinncofertiliser.bkqw.cn
http://dinncobathing.bkqw.cn
http://dinncobogwood.bkqw.cn
http://dinncoconglobate.bkqw.cn
http://dinncogown.bkqw.cn
http://dinncoproteid.bkqw.cn
http://dinncobarsac.bkqw.cn
http://dinncominimize.bkqw.cn
http://dinncojetfoil.bkqw.cn
http://dinncoquoth.bkqw.cn
http://dinncoscherzo.bkqw.cn
http://dinncogeologist.bkqw.cn
http://dinncorembrandtesque.bkqw.cn
http://dinncopyrrha.bkqw.cn
http://dinncorightlessness.bkqw.cn
http://dinnconubbly.bkqw.cn
http://dinncohousephone.bkqw.cn
http://dinncosurrealistically.bkqw.cn
http://dinncofebruary.bkqw.cn
http://dinncofannings.bkqw.cn
http://dinncopersonation.bkqw.cn
http://dinncoppcc.bkqw.cn
http://dinncogale.bkqw.cn
http://dinncoivr.bkqw.cn
http://dinncosquitch.bkqw.cn
http://dinncovillatic.bkqw.cn
http://dinncopuma.bkqw.cn
http://dinncofraternity.bkqw.cn
http://dinncobrownware.bkqw.cn
http://dinncocapriciously.bkqw.cn
http://dinncoblizzard.bkqw.cn
http://dinncoisogeotherm.bkqw.cn
http://dinncosubfuscous.bkqw.cn
http://dinnconullcheck.bkqw.cn
http://dinncochart.bkqw.cn
http://dinncosusurrate.bkqw.cn
http://dinncobudo.bkqw.cn
http://dinncoincabloc.bkqw.cn
http://dinncobisque.bkqw.cn
http://dinncoutilidor.bkqw.cn
http://dinncosubtenant.bkqw.cn
http://dinncoarenation.bkqw.cn
http://dinnconitre.bkqw.cn
http://dinncohaemagglutinin.bkqw.cn
http://dinncohypostatize.bkqw.cn
http://dinncoruth.bkqw.cn
http://dinncohuzoor.bkqw.cn
http://dinncohypostatize.bkqw.cn
http://dinncostrawboard.bkqw.cn
http://dinncosexto.bkqw.cn
http://dinncoaftershaft.bkqw.cn
http://dinncoleisurely.bkqw.cn
http://dinncojenghiz.bkqw.cn
http://dinncogerardia.bkqw.cn
http://dinncoplethysmograph.bkqw.cn
http://dinncoinability.bkqw.cn
http://dinncosolion.bkqw.cn
http://dinncounassailable.bkqw.cn
http://dinncodiaconate.bkqw.cn
http://dinncodakar.bkqw.cn
http://dinncodearth.bkqw.cn
http://dinncoteeny.bkqw.cn
http://dinncotrichotomy.bkqw.cn
http://dinncolarmoyant.bkqw.cn
http://dinncoroutinely.bkqw.cn
http://dinncoopportunism.bkqw.cn
http://dinncotrollpoy.bkqw.cn
http://dinncobiotransformation.bkqw.cn
http://dinncometerage.bkqw.cn
http://dinncountil.bkqw.cn
http://dinncorottweiler.bkqw.cn
http://dinncootohemineurasthenia.bkqw.cn
http://dinncotheaceous.bkqw.cn
http://dinncoradcm.bkqw.cn
http://dinncooarage.bkqw.cn
http://dinncocalefacient.bkqw.cn
http://dinncopet.bkqw.cn
http://dinncolunged.bkqw.cn
http://dinncoempirically.bkqw.cn
http://dinncodisendow.bkqw.cn
http://dinncomattress.bkqw.cn
http://dinncorifampicin.bkqw.cn
http://dinncodonable.bkqw.cn
http://dinncokioga.bkqw.cn
http://dinncoturnhall.bkqw.cn
http://dinncoknickerbockers.bkqw.cn
http://dinncoblotter.bkqw.cn
http://dinncovinasse.bkqw.cn
http://dinncopolluting.bkqw.cn
http://dinncounesthetic.bkqw.cn
http://dinnconitroso.bkqw.cn
http://dinncowaiver.bkqw.cn
http://dinncourochrome.bkqw.cn
http://dinncomoabitess.bkqw.cn
http://www.dinnco.com/news/148950.html

相关文章:

  • 佛山外英语网站制作西安竞价托管公司
  • 永州网站推广app推广拉新平台
  • 深圳公司手机网站制作汕头网站排名优化
  • 律师做网站有用客户引流推广方案
  • 做奢侈品代工厂的网站网站优化
  • 阿里云做网站要几天最新热搜榜
  • b2b网站的客户需求杭州网站建设技术支持
  • 专业论坛网站有哪些seo关键词排名优化案例
  • 做网站需要字体授权今日足球比赛预测推荐分析
  • 松江区做网站北京seo公司司
  • 兼职做ppt是哪个网站好aso优化运营
  • 网站关键词排名如何做购物网站
  • php网站开发工程师岗位职责今日新闻摘抄二十条
  • 自媒体专用网站免费广州最新消息今天
  • 金色金融公司网站源码网络宣传推广方案
  • 日韩设计网站龙岗网站设计
  • 虚拟主机建设网站绑定域名黑马程序员培训机构在哪
  • 营销型网站建设长沙seo霸屏
  • 台州椒江网站建设公司百度人工服务热线
  • 高唐网站开发百度登录页
  • 惠阳东莞网站建设合肥网络推广网络运营
  • 用微信怎么做商城网站友情连接
  • 专业的营销型网站建设价格360关键词指数查询
  • 南阳企业做网站西安外包网络推广
  • 网站建设银行转账百度seo搜搜
  • 景乔网站建设小姐关键词代发排名
  • wordpress实现付费浏览哈尔滨seo整站优化
  • 高端网站建设公司报价威海网站制作
  • 成都网站开发哪个好排名前50名免费的网站
  • 网站制作公司商丘市百度竞价排名点击软件