Vue3:集成wangEditor富文本编辑器,卑微打工人

120 阅读3分钟

总结

三套“算法宝典”

28天读完349页,这份阿里面试通关手册,助我闯进字节跳动

算法刷题LeetCode中文版(为例)

人与人存在很大的不同,我们都拥有各自的目标,在一线城市漂泊的我偶尔也会羡慕在老家踏踏实实开开心心养老的人,但是我深刻知道自己想要的是一年比一年有进步。

最后,我想说的是,无论你现在什么年龄,位于什么城市,拥有什么背景或学历,跟你比较的人永远都是你自己,所以明年的你看看与今年的你是否有差距,不想做咸鱼的人,只能用尽全力去跳跃。祝愿,明年的你会更好!

由于篇幅有限,下篇的面试技术攻克篇只能够展示出部分的面试题,详细完整版以及答案解析,有需要的可以关注

开源分享:docs.qq.com/doc/DSmRnRG…

在这里插入图片描述

父组件ArticleText

===========================================================================

#ArticleText { height: 100%; width: 100%; position: relative; user-select: none; display: flex; flex-direction: column; #ArticleTextHead { height: 75px; width: 100%; //background-color: red; display: flex; align-items: center; box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04); z-index: 999; background-color: white; #ArticleTextHeadBack { width: 150px; font-weight: bold; font-size: 24px; display: flex; justify-content: center; align-items: center; cursor: pointer; } .el-divider { height: 24px; } #ArticleTextHeadTitle { display: flex; align-items: center; width: 90%; //background-color: yellow; position: relative; .el-input { flex: 1; } #ArticleTextHeadTitleOperate { width: 250px; margin: 0 30px; display: flex; justify-content: space-around; align-items: center; .el-avatar { cursor: pointer; } } } } #ArticleTextContent { flex: 1; margin-top: 10px; width: 100%; } }

富文本编辑器子组件TextEditor

================================================================================