02 2020 档案
摘要:1. 首先打开阿里字库,搜索图标添加到项目 2.每次添加以后要生成新的css链接 3. 前端通过上面的链接可以查看到对应图标名的unicode代码进行复制 4. 配置一下即可使用在线图标(这里是App.vue导入) @font-face { font-family: 'iconfont'; /* p
阅读全文
摘要:版本号为: 2.6.0.20200223 详情请看这里uniapp - easycom:https://uniapp.dcloud.io/collocation/pages?id=easycom 1. 在pages.json配置以下参数 2. 组件引入符合命名规则 3.在页面会自动引入
阅读全文
摘要:示例: console.time('all time'); // code console.timeEnd('all time'); 实例: console.time('all time'); let a= 1; console.timeEnd('all time'); 定时器名称需一致,conso
阅读全文
摘要:1.什么是“构造函数”? 用new关键字来调用的函数,首字母一般大写 用this来构造它的属性以及方法 function Log(name, desc) { this.name = name; this.desc = desc; this.code = function(){ console.log
阅读全文