上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 29 下一页
摘要: ####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 阅读(1141) 评论(0) 推荐(0) 编辑
摘要: ####直接贴代码(仅供参考,未将重复代码简化,如有需要可自行简化) #####相关文档 https://uniapp.dcloud.io/api/request/network-file?id=downloadfile https://uniapp.dcloud.io/api/file/file? 阅读全文
posted @ 2021-01-26 09:43 huihuihero 阅读(401) 评论(0) 推荐(0) 编辑
摘要: ##1、使用纯html方式实现锚点跳转 1、设置锚点:添加锚点id demoAnchor <div> <div id="demoAnchor">视频内容。。。</div> </div> 2、设置锚点跳转点击链接 #demoAnchor <div> <a href="#demoAnchor">点我跳转 阅读全文
posted @ 2020-12-30 10:50 huihuihero 阅读(3528) 评论(2) 推荐(1) 编辑
摘要: ##重新刷新当前页面 ####1、路由重新导入当前页面(全局设置,所有页面通用) this.$router.push({name:'goodsList',params:{vid:vid}}) 但是我们会发现用vue-router在当前页面再重定向路由到页面本身,就算改变id,页面也是不进行刷新的, 阅读全文
posted @ 2020-12-24 13:15 huihuihero 阅读(853) 评论(0) 推荐(0) 编辑
摘要: ###1、引入VantUi的List组件 ``` 安装步骤见官网:https://vant-contrib.gitee.io/vant/next/#/zh-CN/quickstart 或移步https://www.cnblogs.com/huihuihero/p/11418541.html,搜索va 阅读全文
posted @ 2020-12-22 10:58 huihuihero 阅读(1635) 评论(0) 推荐(0) 编辑
摘要: ###详细文档 js-cookie是一个简单的,轻量级的处理cookies的js API. 官方文档:https://www.npmjs.com/package/js-cookie 一个很详细的博客:https://blog.csdn.net/qq_20802379/article/details/ 阅读全文
posted @ 2020-12-16 14:55 huihuihero 阅读(2981) 评论(0) 推荐(0) 编辑
摘要: 1、安装screenfull包 yarn add screenfull 或 npm install screenfull --save 2、新建ScreenFull组件:ScreenFull.vue <template> <div class="screen-full"> <div v-show=" 阅读全文
posted @ 2020-12-04 10:55 huihuihero 阅读(6011) 评论(0) 推荐(0) 编辑
摘要: ####数组与字符串互相转换 let arr = ["aa","b","c"] let str = arr.join("-") //数组 --> 字符串 "aa-b-c" let arr2 = str.split("-") //字符串 --> 数组 ["aa","b","c"] ####join() 阅读全文
posted @ 2020-12-03 15:35 huihuihero 阅读(164) 评论(0) 推荐(0) 编辑
摘要: export 【 导出 】 一个页面可以有多个 export,如下(列举了不同的导出类型),demo.js页面: export const a = "funny" //直接定义并导出一个变量 export function b(sth) { //直接定义并导出一个函数 console.log(sth 阅读全文
posted @ 2020-11-25 15:05 huihuihero 阅读(343) 评论(0) 推荐(0) 编辑
摘要: ####代码的规范性是一切优秀项目的前提,以下是具有代表性的几个大厂的前端代码规范,望多学习 ####1、腾讯前端团队代码规范 https://tgideas.qq.com/doc/index.html ####2、京东凹凸实验室代码规范 https://guide.aotu.io/index.ht 阅读全文
posted @ 2020-11-18 13:29 huihuihero 阅读(204) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 29 下一页