上一页 1 2 3 4 5 6 7 8 ··· 29 下一页
摘要: ###直播协议HLS和RTMP 直播技术一般有两种协议方式,分别是HLS和RTMP,两种协议分别的解释: HLS ,是苹果公司实现的基于 HTTP 的流媒体传输协议,全称 HTTP Live Streaming,可支持流媒体的直播和点播,主要应用在 iOS 系统,为 iOS 设备(如 iPhone、 阅读全文
posted @ 2023-07-24 16:13 huihuihero 阅读(834) 评论(0) 推荐(0) 编辑
摘要: ####如何实现横向滚动(兼容safari,微信,浏览器) ``` 实现横向滚动需要以下几点: 1、父级盒子要overflow-y:hidden;overflow-x:auto来防止页面宽度溢出,以及实现左右滚动效果 2、::-webkit-scrollbar { display: none;}隐藏 阅读全文
posted @ 2023-07-19 13:34 huihuihero 阅读(755) 评论(0) 推荐(0) 编辑
摘要: 直接贴代码 <template> <div class="demo-container"> <el-input onkeyup="value=value.replace(/\D|/g,'')" v-model="codeValue" ref="codeInputElem" placeholder=" 阅读全文
posted @ 2023-06-28 18:00 huihuihero 阅读(871) 评论(0) 推荐(0) 编辑
摘要: ###官方文档 https://docxtemplater.com/ ###博客 https://juejin.cn/post/7088221762965471269 阅读全文
posted @ 2023-05-05 15:34 huihuihero 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 在项目根目录下创建 jsconfig.js 并配置以下代码 { "compilerOptions": { "baseUrl": "./", "paths": { "@/*": ["src/*"] } }, "exclude": ["node_modules", "dist"], "include": 阅读全文
posted @ 2023-04-21 09:56 huihuihero 阅读(232) 评论(0) 推荐(0) 编辑
摘要: DevTools failed to load source map: Could not load content for webpack:///node_modules/element-plus/es/index.mjs.map: Fetch through target failed: Uns 阅读全文
posted @ 2023-04-20 10:22 huihuihero 阅读(502) 评论(0) 推荐(0) 编辑
摘要: ###标准化浏览器样式差异 项目引入normalize.css,(引入顺序根据优先级从小到大-->从上往下) https://gitcode.net/mirrors/necolas/normalize.css?utm_source=csdn_github_accelerator ###标准化富文本样 阅读全文
posted @ 2023-04-14 11:35 huihuihero 阅读(10) 评论(0) 推荐(0) 编辑
摘要: ###前提条件 src/components/TEditor.vue里,引入自带的paste插件 在配置项(init)里的plugins里添加 paste ###关于粘贴图片自动上传 【效果】用户复制一个本地图片或者截图后,在编辑器里粘贴,首先以blob文件流形式展示; 然后执行自动上传到接口,并在 阅读全文
posted @ 2023-04-14 11:10 huihuihero 阅读(1164) 评论(0) 推荐(1) 编辑
摘要: ###https://juejin.cn/post/7031432455357743140 ###https://juejin.cn/post/6844903705540558856 阅读全文
posted @ 2023-04-13 12:15 huihuihero 阅读(28) 评论(0) 推荐(0) 编辑
摘要: ###src/store/index.js import { createStore } from "vuex"; import modules from "./modules"; // 创建store实例 const store = createStore({ modules, }) //挂载到v 阅读全文
posted @ 2023-04-13 08:56 huihuihero 阅读(409) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 29 下一页