美文网首页
webpack+vue的日期与富文本插件

webpack+vue的日期与富文本插件

作者: 薄荷星球 | 来源:发表于2016-10-25 15:05 被阅读827次

webpack 想要装插件真的好难,一开始打算用summernote,但是试了好几次不行,因为要引入外部css和js

最后找了两个插件和一些坑

一个日期datePicker插件:
https://github.com/dai-siki/vue-datepicker-simple
这个插件没什么坑,按照步骤直接用就可以
————————————
一个富文本插件:
https://github.com/PeakTai/vue-html5-editor

这个插件,在安装后,在global环境中贴上:
var editor = require("vue-html5-editor") Vue.use(editor, { //global component name name: "vue-html5-editor", //custom icon class of built-in modules,default using font-awesome icons: { text: "fa fa-pencil", color: "fa fa-paint-brush", font: "fa fa-font", align: "fa fa-align-justify", list: "fa fa-list", link: "fa fa-chain", unlink: "fa fa-chain-broken", tabulation: "fa fa-table", image: "fa fa-file-image-o", hr: "fa fa-minus", eraser: "fa fa-eraser", undo: "fa-undo fa", "full-screen": "fa fa-arrows-alt", info: "fa fa-info", }, //config image module image: { //Url of the server-side,default null and convert image to base64 server: null, //the name for file field in multipart request fieldName: "image", //max file size sizeLimit: 512 * 1024, // default true,if set to true,the image will resize by localResizeIMG (https://github.com/think2011/localResizeIMG) compress: true, //follows are options of localResizeIMG width: 1600, height: 1600, quality: 80, //handle response data,return image url uploadHandler(responseText){ //default accept json data like {ok:false,msg:"unexpected"} or {ok:true,data:"image url"} var json = JSON.parse(responseText) if (!json.ok) { alert(json.msg) } else { return json.data } } }, //default en-us, en-us and zh-cn are built-in language: "zh-cn", i18n: { //specify your language here "zh-cn": { "align": "对齐方式", "image": "图片", "list": "列表", "link": "链接", "unlink": "去除链接", "table": "表格", "font": "文字", "full screen": "全屏", "text": "排版", "eraser": "格式清除", "info": "关于", "color": "颜色", "please enter a url": "请输入地址", "create link": "创建链接", "bold": "加粗", "italic": "倾斜", "underline": "下划线", "strike through": "删除线", "subscript": "上标", "superscript": "下标", "heading": "标题", "font name": "字体", "font size": "文字大小", "left justify": "左对齐", "center justify": "居中", "right justify": "右对齐", "ordered list": "有序列表", "unordered list": "无序列表", "fore color": "前景色", "background color": "背景色", "row count": "行数", "column count": "列数", "save": "确定", "upload": "上传", "progress": "进度", "unknown": "未知", "please wait": "请稍等", "error": "错误", "abort": "中断", "reset": "重置" } }, //the modules you don't want hiddenModules: [], //keep only the modules you want and customize the order. //can be used with hiddenModules together visibleModules: [ "text", "color", "font", "align", "list", "link", "unlink", "tabulation", "image", "hr", "eraser", "undo", "full-screen", "info", ], //extended modules modules: { //omit,reference to source code of build-in modules } })

进入html页面,引入<link href="http://cdn.bootcss.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
外部图标样式

相关文章

  • webpack+vue的日期与富文本插件

    webpack 想要装插件真的好难,一开始打算用summernote,但是试了好几次不行,因为要引入外部css和j...

  • Unity插件之TextMeshPro 6.富文本

    Unity插件之TextMeshPro 6.富文本 简介 通过富文本标签可以更改文本的外观和布局,实现多种样式的结...

  • vue-quill-editor

    vue的富文本插件 npm安装插件 main.js全局引入 单页面应用

  • 基于vue富文本编辑器的慢慢人生路

    最近需要用到富文本编辑器插件,项目是用VUE框架搭建的 所以这里就专门介绍几款有关vue的富文本插件: 项目中趟过...

  • wangEdito文本编辑器图片上传阿里云

    Html部分 1、创建加载富文本容器 Js部分 1、加载的的插件 2、定义的变量 3、监听文本的变化 4、创建富文...

  • 富文本前端插件

    富文本插件自己用到的几个,个人感觉: 1.wangeditor 3.0版本---官网[https://www.ka...

  • 聊聊富文本编辑

    前端富文本编辑的场景还是挺多的,所以开发中就需要应用到各种富文本插件,比如百度的UEditor,kindedito...

  • 2.8 输入控件(二)

    2.8.3 QTextEdit 富文本编辑器 2.8.3.1 富文本编辑器 与普通的纯文本相比,富文本其实就是可以...

  • 富文本ZRichText

    最近写了一个富文本插件:ZRichTexthttps://github.com/zrunker/ZRichText...

  • 2019-03-10

    为实现公告功能,我添加了富文本,在看了众多富文本插件中最后选择了CKEditor,但是对图片上传功能的实现上遇到了...

网友评论

      本文标题:webpack+vue的日期与富文本插件

      本文链接:https://www.haomeiwen.com/subject/namruttx.html