- 博客(5)
- 收藏
- 关注
原创 功能需要富文本编译器图片不转base64,琢磨了一下,上代码
editor = new E('#div1'); // 编辑器高度 editor.config.height = 300; // 图片转base64(开这个是因为关闭,是因为文件上传窗口也会关闭) editor.config.uploadImgShowBase64 = true; editor.create(); // 上传接口(富文本编译器图片上传的接口) editor.config.uploadImgServer =..
2021-09-17 15:40:03 425
原创 回顾一下Object.defineproperty方法
<script type="text/javascript"> let number = 18 let person = { name: '张三', sex: '男', } Object.defineProperty(person,'age',{ // value:18, // enumerable:true, //控制属性是否可枚举,默认值false // writable:true, //控制属..
2021-08-23 17:59:40 124
原创 el与data的两种写法
// el的两种写法 // Vue.config.productionTip = false //阻止vue在启动时生产生产提示 // const v = new Vue({ // el:'#root', // data:{ // name:'大秘籍' // }, // }) // v.$mount('#root') // console.log(v) // data的两种写法 Vue.config.productionTip = false //阻止vue在启动.
2021-08-23 17:56:39 94
原创 Vue中的事件处理,害,就是复习一下,新手上路,阻止冒泡,阻止默认事件,事件只触发一次,标题就写几个常用的要不然抓不到
1.prevent:阻止默认事件(常用); 2.stop:阻止事件冒泡(常用); 3.once:事件只触发一次(常用); 4.capture:使用事件的捕获模式; 5.self:只有event.target是当前操作的元素是才触发事件; 6.passive:事件的默认行为立即执行,无需等待事件回调执行完毕; 写的两种都可以,现在用的比较多的就是直接加在@click后面 <!-- 1.prevent:阻止默认事件(常用); --> ...
2021-08-23 17:33:13 176
原创 今天重新搭架子,用了架子是VUE的,中间出现了两个问题1.ESlint报错提示clear,2.Parsing error: Unexpected token
第一个已经解决,"vue/comment-directive":'off',加了个代码就好了,第二个还在研究好了加上去
2021-08-19 10:59:10 2565 8
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人