摘要: npm install vue-quill-editor --save 在main.js中引入 import VueQuillEditor from 'vue-quill-editor' // require styles 引入样式 import 'quill/dist/quill.core.css 阅读全文
posted @ 2018-05-25 17:58 风吹麦浪打 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 随着SPA、前后端分离的技术架构在业界越来越流行,前端的业务复杂度也越来越高,导致前端开发者需要管理的内容,承担的职责越来越多,这一切,使得业界对前端开发方案的思考多了很多,以react、vue等框架为代表推动的组件化开发模式越来越被开发者认可,这种模式极大的降低了我们开发与维护的成本。vue作为一 阅读全文
posted @ 2018-05-25 17:00 风吹麦浪打 阅读(144) 评论(0) 推荐(0) 编辑
摘要: @font-face是CSS3中的一个模块,他主要是把自己定义的Web字体嵌入到你的网页中,随着@font-face模块的出现,我们在Web的开发中使用字体不怕只能使用Web安全字体,你们当中或许有许多人会不自然的问,这样的东西IE能支持吗?当我告诉大家@font-face这个功能早在IE4就支持了 阅读全文
posted @ 2018-05-25 16:53 风吹麦浪打 阅读(115) 评论(0) 推荐(0) 编辑
摘要: irst:定义一个parent component ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <template> <div> <childOne></childOne> </div> </template> <script> import childO 阅读全文
posted @ 2018-05-25 16:15 风吹麦浪打 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-05-25 15:37 风吹麦浪打 阅读(458) 评论(0) 推荐(0) 编辑
摘要: Document Name Math Physics Chemistry Melanie 100 ... 阅读全文
posted @ 2018-05-25 15:21 风吹麦浪打 阅读(287) 评论(0) 推荐(0) 编辑
摘要: width:100%; background: url('../images/res.jpg') no-repeat 0 0px; background-attachment:fixed; background-size:100% 100%; height:auto; position: relative; 阅读全文
posted @ 2018-05-25 12:23 风吹麦浪打 阅读(939) 评论(0) 推荐(0) 编辑
摘要: 在 Vue 2.0 中,为自定义组件绑定原生事件必须使用 .native 修饰符: 从易用性的角度出发,我们对 Button 组件进行了处理,使它可以监听 click 事件: 但是对于其他组件,还是需要添加 .native 修饰符。 2.如何在 Table 组件的每一行添加操作该行数据的按钮? 使用 阅读全文
posted @ 2018-05-25 11:04 风吹麦浪打 阅读(6943) 评论(0) 推荐(2) 编辑