上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: 1、--save-dev:只是开发和打包时会用到的,但实际上线并不需要 2、--save:除了开发需要,实际上线的时候也需要的 阅读全文
posted @ 2020-09-08 15:32 (⊙o⊙)买噶 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 1、单个页面 .wxml文件 <view> <!-- 自定义导航 --> <view class='nav bg-white' style='height:{{navHeight}}px'> <view class='nav-title'> <view class="nav-position">位置 阅读全文
posted @ 2020-09-08 11:11 (⊙o⊙)买噶 阅读(1632) 评论(0) 推荐(0) 编辑
摘要: 需要安装 vue-property-decorator npm install vue-property-decorator -S 使用 import {Watch} from "vue-property-decorator"; @Watch("count", { immediate: true, 阅读全文
posted @ 2020-09-07 11:08 (⊙o⊙)买噶 阅读(1770) 评论(0) 推荐(0) 编辑
摘要: git clone ssh://git@xx.x.xxx:8080/xxxxxxx 阅读全文
posted @ 2020-08-21 17:37 (⊙o⊙)买噶 阅读(217) 评论(0) 推荐(0) 编辑
摘要: let obj=[ { value:'10001', label:'内容1' }, { value:'20002', label:'内容2' }, { value:'30003', label:'内容3' }, { value:'40004', label:'内容4' } ] obj.find(fu 阅读全文
posted @ 2020-08-11 09:17 (⊙o⊙)买噶 阅读(4453) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="body-color"> <div class="cart-top"> <div class="cart-top-l">共<text>{{goods}}</text>件商品</div> <div class="cart-top-r" @click="ed 阅读全文
posted @ 2020-07-13 16:31 (⊙o⊙)买噶 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1、安装nodejs 2、安装cnpm npm install -g cnpm --registry=https://registry.npm.taobao.org 3、安装全局typescript cnpm install -g typescript 4、使用cnpm初始化编译环境 npm ini 阅读全文
posted @ 2020-05-26 17:28 (⊙o⊙)买噶 阅读(644) 评论(0) 推荐(0) 编辑
摘要: 1、子组件向父组件传值 子组件 <template> <div class="app"> <input @click="sendMsg" type="button" value="给父组件传递值"> </div> </template> <script> export default { data 阅读全文
posted @ 2020-04-04 13:48 (⊙o⊙)买噶 阅读(866) 评论(0) 推荐(0) 编辑
摘要: git定义全局用户名邮箱生成私钥 1、git设置全局用户名和邮箱 $ git config --global user.name "xxxx" $ git config --global user.email "xxxxx@163.com" 2、生成私钥(-C的C大写) $ ssh-keygen - 阅读全文
posted @ 2020-04-02 12:53 (⊙o⊙)买噶 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 1、查看mac的IP地址 ifconfig | grep "inet" 2、mac运行httpserver 首先 sudo apachectl start 然后进入目标文件cd *** python -m SimpleHTTPServer 3、最后浏览器输入:http://localhost:800 阅读全文
posted @ 2020-03-11 17:10 (⊙o⊙)买噶 阅读(208) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页