在小程序中自定义组件可以通过新建components来实现 参考微信小程序自定义组件文档 https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/wxml-wxss.html 自定义组件可以通过slot来 ...
分类:
微信 时间:
2020-06-17 15:33:02
阅读次数:
85
父组件: DOM部分 <el-table-column prop="img" :label="label" width="180"> <template slot-scope="scope"> <div class="img-wrap"> <img v-lazy="scope.row.album.p ...
分类:
其他好文 时间:
2020-06-17 12:41:24
阅读次数:
159
少点代码,多点头发 本文已经被GitHub收录,欢迎大家踊跃star 和 issues。 https://github.com/midou-tech/articles 入职第一周,我被坑了 最近刚入职新公司,本来想着这刚来新公司,一般都是熟悉熟悉公司同事,看看组内工程文档,找几个demo自己练练手。 ...
分类:
其他好文 时间:
2020-06-15 09:38:21
阅读次数:
61
父:<template v-slot:center></template>(简写:<template #:center></template>) 子:<slot name="center"></slot> 父:<template v-slot:center=“datas”>{{datas.data} ...
分类:
其他好文 时间:
2020-06-13 19:31:03
阅读次数:
132
后台主页面代码 <template> <el-container style="height:100vh"> <el-header> <div> <img src="../assets/logo.png" alt /> <span>Vue商城后台管理系统</span> </div> <el-butt ...
废话不罗嗦,上硬菜。 1.html下: <el-table-column label="名称" sortable> <template slot-scope="scope"> <el-input v-model="scope.row.name" :disabled="Disabled[scope.$ ...
分类:
其他好文 时间:
2020-06-11 21:18:59
阅读次数:
106
vue的slot插槽分成默认插槽、具名插槽、作用域插槽; 插槽是存在于父子组件中使用,在子组件中决定插槽的位置,同时子组件也可以给插槽默认信息,当父组件中没有需要给子组件插槽插入信息时,显示的是子组件插槽定义的默认信息。 默认插槽 父组件 <template> <!-- 插槽 --> <div> < ...
分类:
其他好文 时间:
2020-06-08 11:01:04
阅读次数:
57
倒计时组件 <template> <div class="container"> <!-- 一个元素显示倒计时 --> <div v-show="isEndStatus" v-if="!manyElement" :style="{ color }">{{ countDownItem }}</div> ...
分类:
其他好文 时间:
2020-06-07 10:44:29
阅读次数:
65
slot:插槽相当于一个统一资源占位符,对使用的模板在插槽中写入自己想要的数据<slot name = "aaa"></slot>//name对插槽进行命名为aaa<template slot = "aaa">//调用组件或者自己编写的组件并绑定名字为aaa的插槽,来实现对插槽的替换与动态变化</t ...
分类:
其他好文 时间:
2020-06-04 01:16:49
阅读次数:
49
Vue+Element 踩坑 1. 获取后台返回的数据,是个数组,循环后展示出来 <el-table-column :label="$t('common.cardModel.guz')" sortable="custom" prop="assetNo"> <template slot-scope=" ...
分类:
其他好文 时间:
2020-06-03 17:35:31
阅读次数:
115