logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue install 报错 Unable to authenticate, need: Basic realm=“aliyun“

解决方法: 项目中npm install --registry https://registry.npmjs.org,漫长等待后, 再npm run serve

Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0

运行时警告 Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.原因:sass版本的问题, 换成calc全局安装 sass-migrator, 在node_modules/.bin中运行 sass-migrator divis

#小程序
小程序之坑---input自动获取焦点

项目:taro3+vue3+taro-ui-vue3方法一:taro-ui-vue3的input组件的autoFocus、focus无效方法二:原生input组件的auto-focus在这个环境下也无效,但是在原生项目中有效方法三:通过用ref获取dom来获取焦点,开发工具中无效,真机有效<input ref="inputRef" type="text" style="border: 1px

#小程序#vue.js
Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0

运行时警告 Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.原因:sass版本的问题, 换成calc全局安装 sass-migrator, 在node_modules/.bin中运行 sass-migrator divis

#小程序
小程序之坑----ios弹窗滑动穿透

项目:taro3+vue3场景:页面上有浮层,手势 滑动浮层,ios会穿透,页面也会滑动,如果页面上有地图,地图也会随之拖动<viewclass="base-touch-layout":catch-move="true":animation="animationData"><viewclass="base-touch-layout-in"@touchmove="touchMove

#小程序#vue.js
uniapp的nviewUI组件库的u-select组件

uview ui的select组件和其他第三方ui组件库有所不同:1)u-select只是弹窗部分,不包含确定选项后的bar部分2)v-model是布尔值,表示是否显示弹窗,而其他组件库大都是选中的值,一般为数组3) mode是列数,single-column是单列4)default-value是选中的值,也可设置默认值,是数组,元素是选中项index, 而不是value5)list是select

#uni-app
uniapp 判断用户是否安装app, 没有则安装

场景: A分享一个活动页面给B,B点击后,需要判断是否有app,如果有,直接跳转到活动页; 如果没有,需要下载app判断是否安装某app:plus.runtime.isApplicationExist({pname: 'com.xxx.xxx',--->app包名称,用于安卓判断action: 'xxxx://'--->urlscheme, 用于IOS判断})打开第三方plus.run

#uni-app
到底了