baozhengrui

导航

2024年6月27日 #

接口封装方法及超时处理

摘要: https://www.cnblogs.com/sumu80/p/18245408 1. 安装 Axios npm install axios 2. 创建请求模块 为了让请求在整个 Vue 项目中可复用,通常会在项目中创建一个专门的请求模块,用于配置和管理所有的 HTTP 请求。 a. 创建 htt 阅读全文

posted @ 2024-06-27 09:48 芮艺 阅读(3) 评论(0) 推荐(0) 编辑

导出

摘要: let params = this.writeParams // params.outline = this.$refs.outlineEditor.initForm.content // params.document = this.$refs.textEditor.initForm.conten 阅读全文

posted @ 2024-06-27 09:44 芮艺 阅读(31) 评论(0) 推荐(0) 编辑

富文本编辑器

摘要: 1.下载富文本插件 npm install @wangeditor/editor-for-vue --save --legacy-peer-deps 2.封装的组件editor1 <template> <div style="border: 1px solid #ccc" class="relati 阅读全文

posted @ 2024-06-27 08:58 芮艺 阅读(9) 评论(0) 推荐(0) 编辑

在父组件vue页面关闭子组件小页面

摘要: 子组件 alertComp.vue <template> <div> <div class="black" @click="close">X</div> </div> close(){ console.info('*****关闭**1111***') this.$emit('closeDiv1') 阅读全文

posted @ 2024-06-27 08:45 芮艺 阅读(1) 评论(0) 推荐(0) 编辑