摘要: 打包时复制出一份代码,代码的路径中不能有中文名的文件夹!!! 在复制出的文件夹中 安装yarn 命令:npm install -g yarn 等待执行完成之后,我们需要配置一下package.json文件,在文件中添加 "scripts": { "start": "chcp & electron . 阅读全文
posted @ 2020-06-05 15:28 SunPangYu 阅读(144) 评论(0) 推荐(0) 编辑
摘要: data中的数据: data:{ days:[ {title:'昨天',methods:'dayBefore'}, {title:'今天',methods:'today'}, {title:'近7天',methods:firstSevenDays}, {title:'近30天',methods:'f 阅读全文
posted @ 2019-09-17 14:14 SunPangYu 阅读(4892) 评论(0) 推荐(0) 编辑
摘要: @click="getIndex();getIndex2()" 不同方法中间需要用 ";" 号分隔 阅读全文
posted @ 2019-09-16 13:03 SunPangYu 阅读(7361) 评论(0) 推荐(1) 编辑
摘要: vue中动态更改class的方法是在元素上绑定 :class标签 <div :class="coupon.couponProductType 'ALL' ? 'couponAll' : 'couponPortion' "></div> 重点是 判断参数(本例子中的ALL)要用 ‘’ 号括起来,包括后 阅读全文
posted @ 2019-09-03 09:40 SunPangYu 阅读(1589) 评论(0) 推荐(0) 编辑