随笔分类 -  vue3

vue3
摘要:有在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) 编辑
摘要:把文件放到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) 编辑
摘要:next({...to,replace:true}); 阅读全文
posted @ 2021-10-21 00:02 羽鱼 阅读(497) 评论(0) 推荐(0) 编辑
摘要:给组件命名 export default { name: "ItemMenu" } 然后 <item-menu></item-menu> 阅读全文
posted @ 2021-09-17 22:59 羽鱼 阅读(1388) 评论(0) 推荐(0) 编辑
摘要:import { ElMessageBox } from "element-plus"; ElMessageBox.confirm("此操作将永久删除, 是否继续?", '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'w 阅读全文
posted @ 2021-05-06 20:33 羽鱼 阅读(849) 评论(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) 编辑
摘要:关于 setup()中动态获取 dom 需要 先 nextTick() 后再获取,不然获取的dom可能是不完整的 import { nextTick} from "vue"; …… const funName= async () => { await nextTick(); } 阅读全文
posted @ 2021-03-10 22:30 羽鱼 阅读(3764) 评论(0) 推荐(0) 编辑
摘要:Router4中去掉了 router.addRoutes 只能使用 addRoute~~~~就是不能动态添加路由数组,只能单个的添加~~不过可以嵌套 阅读全文
posted @ 2021-03-01 09:14 羽鱼 阅读(3750) 评论(0) 推荐(0) 编辑