摘要: // 1、找到DOM节点 const canvas = document.getElementById('canvas'); // 2、画笔 canvas的上下文对象 const ctx = canvas.getContext('2d'); // 3、设置颜色 调色 ctx.fillStyle = 阅读全文
posted @ 2019-08-01 16:27 无所谓。。。 阅读(368) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Doc 阅读全文
posted @ 2019-08-01 16:22 无所谓。。。 阅读(274) 评论(0) 推荐(0)
摘要: 安装:npm install vue-quill-editor --save 安装Vue-Quill-Editor需要依赖: npm install quill --save 在入口文件main.js 中引入 在需要的组件中使用 代码如下: 这样就完成一个简单的富文本编辑器 阅读全文
posted @ 2019-08-01 16:06 无所谓。。。 阅读(4994) 评论(0) 推荐(0)