vue3 安装使用postcss-pxtorem
vue.config.js
module.exports = {
css: {
loaderOptions: {
postcss: {
exclude...
yekong
3年前 (2022-05-19)
喜欢
安装依赖
npm i postcss-pxtorem@5.1.1 -D
配置postcss.config.js
module.exports = {
plugins: {
autoprefixer: {},
'postcss-pxtorem': {
...
yekong
3年前 (2022-05-19)
喜欢
是postcss-pxtorem版本太高了
降到5.1.1就可以正常运行了
"postcss-pxtorem": "^5.1.1",
安装依赖
cnpm i postcss-pxtorem@5.1.1 -D
...
yekong
3年前 (2022-05-19)
喜欢
微信小程序涉及到用户信息收集的地方,都需要同意协议,每次都要手动写一遍,好麻烦,干脆封装成一个小组件,直接复用好了。
使用
<agreement :select.sync="select"></agreement>
验证
if (!...
yekong
3年前 (2022-05-18)
喜欢
使用
<getRole :roleId="userInfo.userRoleId"></getRole>
组件代码
/**
* @Author: 858834013@qq.com
* @Name: getRole
* @Date: 2...
yekong
3年前 (2022-05-18)
喜欢
使用到的组件
uniapp uview 滑动显示删除按钮
html
<u-swipe-action>
<u-swipe-action-item @click="getDelete($event,item)" :key='inde...
yekong
3年前 (2022-05-18)
喜欢
代码
<input confirm-type="search" @confirm="getdata" type="text" v-model="data.KeyWord" placeholde...
yekong
3年前 (2022-05-17)
喜欢
使用
<add @getdata="getlist"></add>
代码
/**
* @Author: 858834013@qq.com
* @Name: add
* @Date: 2022-05-17
* @Desc:
*/
<...
yekong
3年前 (2022-05-17)
喜欢
方法封装
export default function base64ToBlob(base64Data) {
var byteString
if (base64Data.split(',')[0].indexOf('base64') >= 0) {
byt...
yekong
3年前 (2022-05-17)
喜欢
使用
js vue base64文件转file
代码
生成微信小程序码,base64转为file上传到腾讯云cos
/**
* @Author: 858834013@qq.com
* @Name: qrCode
* @Date: 2022-05-17
* @Desc: 生成二维码...
yekong
3年前 (2022-05-17)
喜欢