标签sql下的文章

了念 发布于 11月29日,2022

Vue中v-html图片过大造成溢出父级元素的解决方法

在软件开发中,经常遇到渲染富文本的需求!不管是PC端还是移动端,但是也会有很多问题,比如遇到 v-html 渲染富文本时图片会相对父级元素溢出,内容里边的图片太大比外面的宽度都款,感觉乱糟糟的页面,进而图片还把页面撑的比较宽。

阅读全文 »

了念 发布于 11月08日,2022

vue2解决父子组件报错: mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop's value. Prop being mutated:

在使用vue2开发过程中,把ElementTiptap富文本编辑器二次封装成组件使用,传值和使用都正常,但是他输入时候报错mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop's value. Prop being mutated:等错误,

阅读全文 »

了念 发布于 09月08日,2022

css使用align-items属性让多行文字在div中上下居中

日常让文字上下居中通过margin-top或者pading-top或者line-height等,但是他们只是针对一行文字,实现上下居中,有时候我们在软件开发时候,需要让多行文字在div中上下居中,可能每个div的里面的文字行数都不一样。此时很需要使用align-items属性让多行文字在div中完美上下居中。

阅读全文 »

了念 发布于 09月01日,2022

Vue.js中的elementui种的组件el-popover修改样式不生效

软件开发项目中,选择是vue.js 前端框架是element-ui。根据ui的设计。需要把弹窗的圆角修改和边距修改,发现样式不生效,很上头,查看官方的文档也说得不清不出的,然后去google了一圈,最后解决了,修改办法如下:1.定义popper-class样式信息,2.编写对应的css的class .el-popover.my-el-popover 这种格式,前缀必须是.el-popover 。3.去掉scope

阅读全文 »