咏竹莉
where there is a will,there is a way
摘要: data () { return { resizeTimer: null, myChart1: null, myChart2: null, myChart3: null, myChart4: null } }, methods: { // 综合得分 雷达图 getScoreChart () { le 阅读全文
posted @ 2021-06-25 17:42 咏竹莉 阅读(342) 评论(0) 推荐(0)
摘要: Mac电脑上执行‘ npm install –global vue-cli’命令,报错 原因是无权限,要使用管理员权限 sudo。 解决: sudo npm install -g react-native-cli 阅读全文
posted @ 2021-06-25 17:36 咏竹莉 阅读(326) 评论(0) 推荐(0)
摘要: 1. 标准时间(即Date() 对象) Mon Sep 16 2019 00:00:00 GMT+0800 (中国标准时间)var now = new Date();now; // Mon Sep 16 2019 00:00:00 GMT+0800 (中国标准时间) 标准时间转时间戳,用getTim 阅读全文
posted @ 2021-06-25 17:31 咏竹莉 阅读(631) 评论(0) 推荐(0)
摘要: typeof 123; // 'number' typeof NaN; // 'number' typeof 'str'; // 'string' typeof true; // 'boolean' typeof undefined; // 'undefined' typeof Math.abs; 阅读全文
posted @ 2021-06-25 10:19 咏竹莉 阅读(92) 评论(0) 推荐(0)