您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“vue3項(xiàng)目中怎么使用tinymce”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
tinymce是一個(gè)功能齊全的富文本編輯器插件,但在vue中引入tinymce并不像別的Vue富文本插件一樣那么順利,tinymce本身并不適配Vue,還需要引入@tinymce/tinymce-vue,并且它是國外的富文本插件,沒有通過中文版本,需要在其官網(wǎng)下載翻譯包(可能需要翻墻)。
npm install tinymce -S npm install @tinymce/tinymce-vue -S
在項(xiàng)目public文件夾下新建tinymce文件夾,
將下載的漢化包解壓到此文件夾
然后在node_modules/tinymce中找到skins文件夾,也復(fù)制到public/tinymce里
<template> <editor v-model="myValue" :init="init" :disabled="disabled" :id="tinymceId"></editor> </template> <script setup lang="ts"> //JS部分 //在js中引入所需的主題和組件 import tinymce from 'tinymce/tinymce' import 'tinymce/skins/content/default/content.css' import Editor from '@tinymce/tinymce-vue' import 'tinymce/themes/silver' import 'tinymce/themes/silver/theme' import 'tinymce/icons/default'; //引入編輯器圖標(biāo)icon,不引入則不顯示對應(yīng)圖標(biāo) import 'tinymce/models/dom' // 這里是個(gè)坑 一定要引入 //在TinyMce.vue中接著引入相關(guān)插件 import "tinymce/icons/default/icons" // import "tinymce/plugins/image" // 插入上傳圖片插件 // import "tinymce/plugins/media" // 插入視頻插件 import "tinymce/plugins/table" // 插入表格插件 import "tinymce/plugins/lists" // 列表插件 import "tinymce/plugins/wordcount" // 字?jǐn)?shù)統(tǒng)計(jì)插件 import "tinymce/plugins/code" // 源碼 // import "tinymce/plugins/fullscreen" //全屏 //接下來定義編輯器所需要的插件數(shù)據(jù) import { reactive, ref } from "vue" import { onMounted, defineEmits, watch } from "@vue/runtime-core" import axios from 'axios' // import { updateImg } from '@/api/order/order' const emits = defineEmits(["getContent"]) //這里我選擇將數(shù)據(jù)定義在props里面,方便在不同的頁面也可以配置出不同的編輯器,當(dāng)然也可以直接在組件中直接定義 const props = defineProps({ value: { type: String, default: () => { return "" }, }, baseUrl: { type: String, default: "", }, disabled: { type: Boolean, default: false, }, plugins: { type: [String, Array], default: "lists table", },//必填 toolbar: { type: [String, Array], default: "codesample bold italic underline alignleft aligncenter alignright alignjustify | undo redo | formatselect | fontselect | fontsizeselect | forecolor backcolor | bullist numlist outdent indent | lists link table code | removeformat ", },//必填 }) //用于接收外部傳遞進(jìn)來的富文本 const myValue = ref(props.value) const tinymceId = ref("vue-tinymce-" + +new Date() + ((Math.random() * 1000).toFixed(0) + "")) //定義一個(gè)對象 init初始化 const init = reactive({ selector: '#' + tinymceId.value, //富文本編輯器的id, language_url: "/tinymce/langs/zh_CN.js", // 語言包的路徑,具體路徑看自己的項(xiàng)目,文檔后面附上中文js文件 language: "zh_CN", //語言 skin_url: "/tinymce/skins/ui/oxide", // skin路徑,具體路徑看自己的項(xiàng)目 height: 400, //編輯器高度 branding: false, //是否禁用“Powered by TinyMCE” menubar: true, //頂部菜單欄顯示 image_dimensions: false, //去除寬高屬性 plugins: props.plugins, //這里的數(shù)據(jù)是在props里面就定義好了的 toolbar: props.toolbar, //這里的數(shù)據(jù)是在props里面就定義好了的 font_formats: 'Arial=arial,helvetica,sans-serif; 宋體=SimSun; 微軟雅黑=Microsoft Yahei; Impact=impact,chicago;', //字體 fontsize_formats: '11px 12px 14px 16px 18px 24px 36px 48px 64px 72px', //文字大小 // paste_convert_word_fake_lists: false, // 插入word文檔需要該屬性 paste_webkit_styles: "all", paste_merge_formats: true, nonbreaking_force_tab: false, paste_auto_cleanup_on_paste: false, file_picker_types: 'file', content_css: '/tinymce/skins/content/default/content.css', //以css文件方式自定義可編輯區(qū)域的css樣式,css文件需自己創(chuàng)建并引入 //圖片上傳 images_upload_handler: (blobInfo, progress) => new Promise((resolve, reject) => { if (blobInfo.blob().size / 1024 / 1024 > 2) { reject({ message: '上傳失敗,圖片大小請控制在 2M 以內(nèi)', remove: true }) return } else { const ph = import.meta.env.VITE_BASE_PATH + ":" + import.meta.env.VITE_SERVER_PORT + "/" let params = new FormData() params.append('file', blobInfo.blob()) let config = { headers: { "Content-Type": "multipart/form-data", } } axios.post('xxxx', params, config).then(res => { if (res.data.code == 200) { resolve(ph + res.data.msg) //上傳成功,在成功函數(shù)里填入圖片路徑 } else { reject('HTTP Error: 上傳失敗' + res.data.code); return } }).catch(() => { reject('上傳出錯(cuò),服務(wù)器開小差了呢') return }) } }), // 文件上傳 file_picker_callback: (callback, value, meta) => { // Provide file and text for the link dialog if (meta.filetype == 'file') { callback('mypage.html', { text: 'My text' }); } // Provide image and alt text for the image dialog if (meta.filetype == 'image') { callback('myimage.jpg', { alt: 'My alt text' }); } // Provide alternative source and posted for the media dialog if (meta.filetype == 'media') { callback('movie.mp4', { source2: 'alt.ogg', poster: 'image.jpg' }); } } }) //監(jiān)聽外部傳遞進(jìn)來的的數(shù)據(jù)變化 watch( () => props.value, () => { myValue.value = props.value emits("getContent", myValue.value) } ) //監(jiān)聽富文本中的數(shù)據(jù)變化 watch( () => myValue.value, () => { emits("getContent", myValue.value) } ) //在onMounted中初始化編輯器 onMounted(() => { tinymce.init({}) }) </script>
// 使用 <TEditor ref="editor" v-model="formState.content" :disabled='disabled' @getContent="getContent"/> <script setup lang="ts"> import { reactive } from "vue"; // 引入 import TEditor from '@/components/TEditor.vue'; const formState = reactive({contents :''}) const getContent = (v: string) => { formState.contents = v } </script>
Tinymce 版本
"@tinymce/tinymce-vue": "^5.0.0"
"tinymce": "^6.0.3"
“vue3項(xiàng)目中怎么使用tinymce”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。