会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
薄荷*
博客园
首页
新随笔
联系
管理
订阅
2021年8月13日
svn禁止提交的文件
摘要: # global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo global-ignores = *node_modules *unpackage# *.rej *~ #*# .#* .*.swp .DS_St
阅读全文
posted @ 2021-08-13 20:48 薄荷*
阅读(349)
评论(0)
推荐(0)
2021年5月7日
plush
摘要: 1.获取uuid plus.device.uuid 2.跳转网页 plus.runtime.openURL(url) 3.获取声音大小 plus.device.getVolume() 4.设置系统音量,0静音,1最大 plus.device.setVolume(0.6) 5.获取设备版本号 plus
阅读全文
posted @ 2021-05-07 10:29 薄荷*
阅读(287)
评论(0)
推荐(0)
2020年12月10日
解决端口号被占用的问题
摘要: 1.netstat -ano | findstr 8085 查看对应的进程 2.taskkill /pid 9448 /f 终止进程
阅读全文
posted @ 2020-12-10 15:07 薄荷*
阅读(111)
评论(0)
推荐(0)
2020年6月5日
vue-layer
摘要: 1、安装插件 npm i --save vue-layer 2、main.js中添加 import layer from 'vue-layer' import 'vue-layer/lib/vue-layer.css' Vue.prototype.$layer = layer(Vue); 3、调用
阅读全文
posted @ 2020-06-05 17:17 薄荷*
阅读(591)
评论(0)
推荐(0)
2020年6月2日
vue动态组件
摘要: 1.第一层 <div id="app"> <div class="left"> <ul> <li @click='ul="bingren"'>我的病人</li> <li @click='ul="bingli"'>电子病历</li> </ul> </div> <div class="right">
阅读全文
posted @ 2020-06-02 19:42 薄荷*
阅读(141)
评论(0)
推荐(1)
vue组件之间的传值
摘要: 1.父子组件之间的传值 父组件 <div id="app"> <my-com1 :dat='msg1' @cd='msg3=$event'></my-com1> <p>这是子组件往父组件传的值:<span>{{msg3}}</span></p> </div> //vue实例 var app=new
阅读全文
posted @ 2020-06-02 11:30 薄荷*
阅读(139)
评论(0)
推荐(1)
2020年4月17日
node.js
摘要: 1.初始化一个默认的包 npm init -y npm install -y 2.安装第三方包 npm install 包名 3.引入包 let 变量名=require('包名'); 经常需要用到的包有: let express=require('express'); let template=re
阅读全文
posted @ 2020-04-17 15:00 薄荷*
阅读(93)
评论(0)
推荐(2)
公告