摘要: 先上bug图片 bug说明:初装vue_cli3.0写了个组件,运行错误,显示如图, 代码提示:[Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. 阅读全文
posted @ 2018-08-09 19:39 maxlove 阅读(11067) 评论(2) 推荐(2) 编辑
摘要: 剩余参数语法允许我们将一个不定数量的参数表示为一个数组。 function sum(...theArgs) { return theArgs.reduce((previous, current) => { return previous + current; }); } console.log(su 阅读全文
posted @ 2018-08-09 16:39 maxlove 阅读(15271) 评论(1) 推荐(1) 编辑