自动切换输入法lite
通过免费的app实现我们自动切换输入法的需求避免折腾
...
4年前 (2021-08-04)
喜欢
api
collectionApi.linPost(
'collection',
'/:id',
user.permission('收藏'),
loginRequired,
async ctx...
4年前 (2021-08-04)
喜欢
修改一下端口就可以了,避免出现端口和下面端口相同的情况
以下为Google Chrome 默认非安全端口列表
1, // tcpmux
7, // echo
9, // discard
11, // systat
13, // day...
4年前 (2021-08-04)
喜欢
legend横向
legend: {
orient: 'horizontal',
left: 'left',
},
legend纵向
legend: {
orient: 'ver...
4年前 (2021-08-03)
喜欢
下载组件
链接:下载地址 提取码: 1g1h
html
<echarts :option="option2" style="height: 300px;" @click="echartsClick">&l...
4年前 (2021-08-03)
喜欢
html
<div class="quanping" @click="quanping">全屏</div>
js
<script>
export default {
components: {},
...
4年前 (2021-08-03)
喜欢
在做Hbuilder的移动APP项目时,遇到屏幕旋转的问题,因此查了下关于屏幕旋转的资料。
在html5+ 的api中有个锁定屏幕方向的方法是 plus.screen.lockOrientation 可以帮助我们解决屏幕旋转问题。
说明
锁定屏幕方向后屏幕只能按锁定的屏幕方向显示...
4年前 (2021-08-01)
喜欢
现象
Alfred可以查看剪贴板,但是选择内容之后,不会自动粘贴
可选操作
在Alfred的配置中设置自动粘贴
配置权限
...
4年前 (2021-08-01)
喜欢
启动app.js应用程序
pm2 start app.js
模式启动4个app.js的应用实例
pm2 start app.js -i 4
启动应用程序并命名为 "api"
pm2 start app.js --name="api"
...
4年前 (2021-07-28)
喜欢
微信小程序开启调试模式
uni.setEnableDebug({
enableDebug: true
})
微信小程序关闭调试模式
uni.setEnableDebug({
enableDebug: false
})
...
4年前 (2021-07-28)
喜欢