在 Vue 2 中安装和使用 mavon-editor富文本编辑器
时间:2024-05-02 17:05:42 来源:网络cs 作者:焦糖 栏目:卖家故事 阅读:
阅读本书更多章节>>>>
步骤 1:安装 mavon-editor
首先,我们需要在 Vue 2 项目中安装 mavon-editor。要安装最新版本的 mavon-editor,请执行以下命令:
npm install mavon-editor --save
这将安装最新版本的 mavon-editor 包以及所需的依赖项。
步骤 2:配置 mavon-editor
接下来,让我们来配置 mavon-editor。请按照以下步骤进行操作:
打开main.js
文件,并导入所需的模块:import Vue from 'vue';import mavonEditor from 'mavon-editor';import 'mavon-editor/dist/css/index.css';Vue.use(mavonEditor);
确保在 main.js
文件中引入了 mavon-editor 的样式文件 'mavon-editor/dist/css/index.css'
。 现在,您已经成功安装和配置了 mavon-editor。您可以在 Vue 组件中使用 <mavon-editor>
标签来编辑富文本内容。请确保已正确地安装 mavon-editor 并导入所需的依赖项。
演示代码
<template> <div class="markdown-container"> <div class="container"> <div class="title">编辑器</div> <mavon-editor v-model="content" ref="md" @imgAdd="$imgAdd" @change="change" style="min-height: 600px" /> <el-button class="editor-btn" type="primary" @click="submit" >提交</el-button > </div> </div></template><script>//该组件中注释掉的代码为局部注册的方式。// import { mavonEditor } from "mavon-editor";// import "mavon-editor/dist/css/index.css";import axios from "axios";export default { data: function() { return { content: "", html: "", configs: {} }; }, // components: { // mavonEditor // }, methods: { // 将图片上传到服务器,返回地址替换到md中 $imgAdd(pos, $file) { var formdata = new FormData(); formdata.append("file", $file); //将下面上传接口替换为你自己的服务器接口 axios({ url: "/common/upload", method: "post", data: formdata, headers: { "Content-Type": "multipart/form-data" } }).then(url => { this.$refs.md.$img2Url(pos, url); }); }, change(value, render) { // render 为 markdown 解析后的结果 this.html = render; }, submit() { console.log(this.content); console.log(this.html); this.$message.success("提交成功!"); } }};</script><style lang="scss">.markdown-container { .editor-btn { margin-top: 20px; } .title { padding-bottom: 30px; text-align: center; font-size: 20px; letter-spacing: 1px; color: #333; font-weight: 600; }}</style>
阅读本书更多章节>>>>
本文链接:https://www.kjpai.cn/gushi/2024-05-02/164320.html,文章来源:网络cs,作者:焦糖,版权归作者所有,如需转载请注明来源和作者,否则将追究法律责任!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
下一篇:返回列表