03 2021 档案

摘要:####vue-aplayer中文文档:https://github.com/SevenOutman/vue-aplayer/blob/develop/docs/README.zh-CN.md ####1、安装音频组件包vue-aplayer yarn add vue-aplayer 或 npm i 阅读全文
posted @ 2021-03-26 16:52 huihuihero 阅读(1799) 评论(0) 推荐(0)
摘要:####1、安装qrcodejs2包 yarn add qrcodejs2 或 npm install qrcodejs2 --save ####2、页面中引入 import QRCode from 'qrcodejs2' components:{ QRCode } ####3、使用 <button 阅读全文
posted @ 2021-03-26 16:37 huihuihero 阅读(1188) 评论(0) 推荐(0)
摘要:let 申明变量时可直接申明无需赋值,const 申明的同时必须赋值 let a //申明了a 但其数据类型为undefined const d //错误,需申明同时赋值,如下 const k=5 //申明了k 且值为5 代码规范:const申明 常量 建议使用大写,申明变量小写 const AGE 阅读全文
posted @ 2021-03-12 08:55 huihuihero 阅读(10) 评论(0) 推荐(0)