上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 文档链接 https://help.aliyun.com/document_detail/122237.html?spm=a2c4g.11186623.6.576.5b6251b3FrkgHe 具体: 首先index.html加入代码 <script src="//g.alicdn.com/mtb/ 阅读全文
posted @ 2020-08-20 14:54 yangAL 阅读(1996) 评论(0) 推荐(0) 编辑
摘要: 首先找公司的神策项目负责人要一下登录网址,每个公司的不同。 然后找产品要一下神策账号 然后登录神策官方网站 照着教程走就行 https://manual.sensorsdata.cn/sa/latest/web-js-sdk-7548149.html 具体如下: 先安装 sa-sdk-javascr 阅读全文
posted @ 2020-08-20 11:36 yangAL 阅读(1537) 评论(0) 推荐(0) 编辑
摘要: 安装 js-audio-recorder <template> <div class="home" style="margin:1vw;"> <el-button type="success" @click="getPermission()" style="margin:1vw;">获取麦克风权限< 阅读全文
posted @ 2020-08-18 14:44 yangAL 阅读(614) 评论(0) 推荐(0) 编辑
摘要: 安装 vue-cropper 然后main.js import VueCropper from 'vue-cropper' Vue.use(VueCropper) 然后 <template> <div> <div class="cut"> <vue-cropper ref="cropper" :im 阅读全文
posted @ 2020-08-18 11:31 yangAL 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 问题描述:el-dialog里有一个el-select 两者都被插到了body上,这就导致了当el-select获得焦点并滚动el-dialog 时 ,el-select的下拉框滚出el-dialog 时,并不会消失,因为他们得层级一样,都直接被插到的body上。 尝试方法1(失败):给el-sel 阅读全文
posted @ 2020-05-31 23:39 yangAL 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 1)安装node版本管理模块n sudo npm install n g 1 下边步骤请根据自己需要选择 (2)安装稳定版 sudo n stable 1 (3)安装最新版 sudo n latest 1 (4) 版本降级/升级 sudo n 版本号 1 比如需要8.4.0版: (5)检测目前安装了 阅读全文
posted @ 2020-05-25 14:37 yangAL 阅读(4168) 评论(0) 推荐(0) 编辑
摘要: git 撤销 commit git reset --soft HEAD^ git 撤销 add git reset HEAD 不小心执行了:git rm -r --cached . 解决方法:git reset HEAD 阅读全文
posted @ 2020-05-25 14:29 yangAL 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 在实际项目开发中可能会碰到在 a.com 页面中嵌套 b.com 页面,这时第一反应是使用 iframe,但是产品又提出在 a.com 中操作,b.com 中进行显示,或者相反。 1、postMessage postMessage方法允许来自不同源的脚本采用异步方式进行有限的通信,可以实现跨文本档、 阅读全文
posted @ 2020-03-13 17:53 yangAL 阅读(597) 评论(0) 推荐(0) 编辑
摘要: 使用进行金额输入,所以需要将type设置为number类型,但是会发现,字母e和小数点.还是可以输入,为了达到限制输入,需要做以下处理。 阅读全文
posted @ 2020-03-13 17:01 yangAL 阅读(4919) 评论(0) 推荐(0) 编辑
摘要: export default { methods: { clickRow(row){ this.$refs.tb.toggleRowSelection(row); } } }; / 在标签中绑定 @row click="clickRow" 单击事件 和 ref="moviesTable"属性 然后再 阅读全文
posted @ 2020-03-13 16:20 yangAL 阅读(666) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页