随笔分类 -  vue

摘要:如果这样不行,初始化没问题,但是~~第二次赋值后就~~~~重新赋值后~~~~ <el-tag v-for="(tag, index) in listData" v-bind:key="index"> {{ tag.userName }} </el-tag> 用这个试试~~至于什么问题 我也不知道~ 阅读全文
posted @ 2022-03-11 17:43 羽鱼 阅读(65) 评论(0) 推荐(0) 编辑
摘要:在mian.js里面引入并设置: import Element from 'element-ui'; // 修改 el-dialog 默认点击遮照为不关闭 Element.Dialog.props.closeOnClickModal.default = false 阅读全文
posted @ 2022-03-09 09:21 羽鱼 阅读(355) 评论(0) 推荐(0) 编辑
摘要:有在watch 里面监听对应属性的变化 后调用 this.$refs.form.validateField('***'); 解决方案来源: el-form-item 校验问题 - 掘金 (juejin.cn) 阅读全文
posted @ 2022-03-07 10:52 羽鱼 阅读(1154) 评论(0) 推荐(0) 编辑
摘要://由于@import //具体原因 据说是 //@import 是引入CSS而不是插入CSS <style lang="scss" src="/style/index.scss" scoped /> 阅读全文
posted @ 2022-03-04 14:23 羽鱼 阅读(750) 评论(0) 推荐(0) 编辑
摘要:如何发布自己的npm包(超详细步骤,博主都在用)_前端小丑-CSDN博客_npm 发布自己的包 阅读全文
posted @ 2022-03-01 10:55 羽鱼 阅读(92) 评论(0) 推荐(0) 编辑
摘要:把文件放到public里面 然后通过 axios.get 去加载 阅读全文
posted @ 2022-02-28 11:58 羽鱼 阅读(136) 评论(0) 推荐(0) 编辑
摘要:el-form 的:model="form" ref="form"在vue3中值不能相同 把ref去掉 或者改名即可 阅读全文
posted @ 2022-02-11 12:31 羽鱼 阅读(1335) 评论(0) 推荐(0) 编辑
摘要:<template> <div style="border: 1px solid #ccc"> <div id="toolbar-container"></div> <div id="editor-container"></div> </div> </template> import { creat 阅读全文
posted @ 2022-01-17 15:40 羽鱼 阅读(314) 评论(0) 推荐(0) 编辑
摘要:父组件定义数据需用 shallowRef只处理基本数据类型的响应式, 不进行对象的响应式处理 子组件用官方案例重置内容 import { SlateTransforms } from '@wangeditor/editor' // 全选 editor.select([]) // 删除选中内容 edi 阅读全文
posted @ 2022-01-17 14:45 羽鱼 阅读(820) 评论(0) 推荐(0) 编辑
摘要:给组件命名 export default { name: "ItemMenu" } 然后 <item-menu></item-menu> 阅读全文
posted @ 2021-09-17 22:59 羽鱼 阅读(1388) 评论(0) 推荐(0) 编辑
摘要:<el-switch v-model="scope.row.status" @change="changeStatus($event,scope.row,scope.$index)" :active-value="1" :inactive-value="2" active-text="开" inac 阅读全文
posted @ 2021-04-15 23:59 羽鱼 阅读(365) 评论(0) 推荐(0) 编辑
摘要:vue3使用proxy,对于对象和数组都不能直接整个赋值。 数组可以 res.forEach(e => { arr.push(e); });或者 const state = reactive({ arr: [] }); state.arr = [1, 2, 3] arr.push(...res); 阅读全文
posted @ 2021-03-15 22:39 羽鱼 阅读(10522) 评论(0) 推荐(0) 编辑
摘要:https://currentmillis.com/ 阅读全文
posted @ 2020-12-14 11:35 羽鱼 阅读(72) 评论(0) 推荐(0) 编辑
摘要:官方文档~~~~ 阅读全文
posted @ 2020-11-06 10:41 羽鱼 阅读(1210) 评论(0) 推荐(0) 编辑
摘要:value-format="timestamp" 阅读全文
posted @ 2020-10-26 11:19 羽鱼 阅读(2110) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_34817440/article/details/96482818 this.$set(this.$refs.tableDom.store.states.lazyTreeNodeMap, id, []); 阅读全文
posted @ 2020-01-02 17:28 羽鱼 阅读(1335) 评论(0) 推荐(0) 编辑
摘要:在使用 vue-cli3 build的时候,使用非子目录需要在 vue.config.js 中添加如下代码:module.exports = { baseUrl: process.env.NODE_ENV 'production' ? '/dist/' : '/', } nginx 的配置,把 40 阅读全文
posted @ 2019-09-25 15:50 羽鱼 阅读(933) 评论(0) 推荐(0) 编辑