1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
| <template> <edior-view v-model="" :config="config" :height="200"> </edior-view> <template> <script> import EdiorView from "./EdiorView"; export default { components:{ EdiorView }, name: "Ueditor", data() { return { zIndex:2000, //可以提供富文本编辑器的层级,可写可不写 elementPathEnabled : false,//去除底部左下角的元素路径提示,可写可不写 config:{ //编辑栏配置项 toolbars: [ [ 'source', //源代码 'undo', //撤销 'redo', //重做 'bold', //加粗 'indent', //首行缩进 'italic', //斜体 'underline', //下划线 'strikethrough', //删除线 'fontborder', //字符边框 'formatmatch', //格式刷 'horizontal', //分隔线 'removeformat', //清除格式 'inserttitle', //插入标题 'mergecells', //合并多个单元格 'cleardoc', //清空文档 'justifyleft', //居左对齐 'justifyright', //居右对齐 'justifycenter', //居中对齐 'justifyjustify', //两端对齐 'simpleupload', //单图上传 'insertimage', //多图上传 'fontfamily', //字体 'fontsize', //字号 'customstyle', //自定义标题 'paragraph', //段落格式 'emotion', //表情 'spechars', //特殊字符 'forecolor', //字体颜色 'directionalityltr', //从左向右输入 'directionalityrtl', //从右向左输入 'imagenone', //默认 'imageleft', //左浮动 'imageright', //右浮动 'imagecenter', //居中 'lineheight', //行间距 'edittip ', //编辑提示 ] ] } } }, watch: {
}, mounted() {
}, methods: {
}, } </script>
<style scoped>
</style>
|