随笔分类 -  Vue

上一页 1 2 3 4 5 6 ··· 14 下一页
摘要:HTML5 播放 RTSP 视频 前端VUE播放RTSP、RTMP、HLS、FLV视频流的解决方案 阅读全文
posted @ 2023-04-11 14:55 ThisCall 阅读(575) 评论(0) 推荐(0) 编辑
摘要:链接 阅读全文
posted @ 2023-03-27 13:34 ThisCall 阅读(105) 评论(0) 推荐(0) 编辑
摘要:地址1 地址2 阅读全文
posted @ 2023-01-11 10:27 ThisCall 阅读(58) 评论(0) 推荐(0) 编辑
摘要:this.$nextTick(() => { this.$refs.navBox.scrollTop = 0; }); 或 this.$nextTick(() => { let scrollElem = this.$refs.scrollDiv; scrollElem.scrollTo({ top: 阅读全文
posted @ 2022-12-06 17:06 ThisCall 阅读(541) 评论(0) 推荐(0) 编辑
摘要:新开的窗口 created () { // 监听页面关闭 window.onbeforeunload = this.beforeDestroyFn; }, methods: { beforeDestroyFn () { console.log('shaqk') window.opener.postM 阅读全文
posted @ 2022-11-28 17:06 ThisCall 阅读(212) 评论(0) 推荐(0) 编辑
摘要:downloadFile(url, "电子作业票APP.jpg"); // fileRealPath 文件全路径 // fileName 文件名带格式的 export function downloadFile(fileRealPath, fileName) { let link = documen 阅读全文
posted @ 2022-11-04 11:47 ThisCall 阅读(151) 评论(0) 推荐(0) 编辑
摘要:调用 this.$download.url('/api/v1/org/question/exportData', datVal, `${this.questMess.name}.xlsx`); js文件 import { saveAs } from 'file-saver' import axios 阅读全文
posted @ 2022-11-04 11:38 ThisCall 阅读(231) 评论(0) 推荐(0) 编辑
摘要:import axios from 'axios' import { getToken } from '@/utils/util' // 文件流转blob对象下载 var baseURL = '' if (process.env.NODE_ENV == 'production') { baseURL 阅读全文
posted @ 2022-11-04 11:31 ThisCall 阅读(202) 评论(0) 推荐(0) 编辑
摘要:1.通用组件封装dialogImg.vue <template> <div> <el-dialog v-show="isShow" :visible.sync="isShow" width="50%" @close="seePicUrl = ''" append-to-body style="tex 阅读全文
posted @ 2022-11-04 11:29 ThisCall 阅读(675) 评论(0) 推荐(0) 编辑
摘要:参考 一、input只能输入框只能输入正整数,输入同时禁止了以0开始的数字输入,防止被转化为其他进制的数值。<!-- 不能输入零时--><input type='text' οninput="value=value.replace(/^(0+)|[^\d]+/g,'')"> <!-- 能输入零时-- 阅读全文
posted @ 2022-11-01 11:40 ThisCall 阅读(170) 评论(0) 推荐(0) 编辑
摘要:<transition name="fade"> <span v-show="isShow">动画效果</span> </transition> .fade-enter-active, .fade-leave-active { transition: opacity .25s } .fade-ent 阅读全文
posted @ 2022-10-10 11:34 ThisCall 阅读(110) 评论(0) 推荐(0) 编辑
摘要:路由及生命周期触发的完整流程 将路由导航、keep-alive、和组件生命周期钩子结合起来的,触发顺序,假设是从a组件离开,第一次进入b组件: beforeRouteLeave:路由组件的组件离开路由前钩子,可取消路由离开。 beforeEach: 路由全局前置守卫,可用于登录验证、全局路由load 阅读全文
posted @ 2022-09-16 17:01 ThisCall 阅读(112) 评论(0) 推荐(0) 编辑
摘要:无效 eslint 配置参数表 中文文档 Vetur 与 ESLint冲突 vscode没有settings 阅读全文
posted @ 2022-08-30 13:57 ThisCall 阅读(18) 评论(0) 推荐(0) 编辑
摘要:目标页面的created => 当前页面的beforeDestroy => 目标页面的mounted 阅读全文
posted @ 2022-08-20 15:36 ThisCall 阅读(9) 评论(0) 推荐(0) 编辑
摘要:链接 链接2 阅读全文
posted @ 2022-07-26 15:52 ThisCall 阅读(436) 评论(0) 推荐(0) 编辑
摘要:参考 参考2 参考3 阅读全文
posted @ 2022-07-22 14:00 ThisCall 阅读(24) 评论(0) 推荐(0) 编辑
摘要:博客 去掉# 阅读全文
posted @ 2022-07-20 13:54 ThisCall 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-07-12 10:43 ThisCall 阅读(38) 评论(0) 推荐(0) 编辑
摘要:参考 <keep-alive> <router-view v-if="$route.meta.keepAlive"></router-view> </keep-alive> <router-view v-if="!$route.meta.keepAlive"></router-view> 错误写法 阅读全文
posted @ 2022-05-27 09:27 ThisCall 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-05-20 14:00 ThisCall 阅读(4) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 14 下一页