logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Vue-cli+Element(button更改按钮默认样式)

<el-button type="primary">主要按钮</el-button>/* 更改element-UI按钮样式 */.el-button--primary{color: #fff;background-color: #FF69B4;border-color: #FF69B4;}.el-button--...

Vue-cli+Element(table多级表头及遍历表头)

<el-table:data="tableData"height="600"style="width: 100%"><el-table-column :l

vue实现文字展开收起

思路:主要是css上可以分为两部分,第一部分展示前面两行,第二部分会根据第一部分的行数判断缩进的大小,然后展示第三行。最后通过背景色的控制让两者看上去是一段文字。html<div :class="showTotal ? 'total-introduce' : 'detailed-introduce'"><div class="intro-content" :title="intr

#css3#vue.js#html5
Vue报错(the "scope" attribute for scoped slots have been deprecated and replaced by "slot-scope" )

报错如下:the “scope” attribute for scoped slots have been deprecated and replaced by “slot-scope” since 2.5.The new “slot-scope” attribute can also be used on plain elements in addition toto denote sc...

Vue-cli+Element(table多级表头及遍历表头)

<el-table:data="tableData"height="600"style="width: 100%"><el-table-column :l

Vue-cli+Element(button更改按钮默认样式)

<el-button type="primary">主要按钮</el-button>/* 更改element-UI按钮样式 */.el-button--primary{color: #fff;background-color: #FF69B4;border-color: #FF69B4;}.el-button--...

解决:input输入框里的placeholder 在ios设备上不垂直居中

input输入框里的placeholder 在ios设备上不垂直居中解决:input{ line-height:normal }

#html5#css3
Vue报错(Property or method "xxx" is not defined on the instance but referenced during render.)

报错如下:Property or method “xxx” is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initi.

到底了