مكون Vue 2 و 3 JS لـ Medium Editor Wrapper with https://github.com/yabwe/medium-editor ولكن جميع الإضافات يتم إعادة الكتابة في Vue.js جميع تكوينات المحرر المتوسطة مدعومة
العرض التوضيحي
yarn add vuejs-medium-editor
# Vue 3
yarn add vuejs-medium-editor@next
أو
npm install vuejs-medium-editor
# Vue 3
npm install vuejs-medium-editor@next
أضف إلى المكون العالمي في Vue 2
import Vue from 'vue'
import MediumEditor from 'vuejs-medium-editor'
Vue . component ( 'medium-editor' , MediumEditor )أو Vue 3
import { createApp } from 'vue'
import MediumEditor from 'vuejs-medium-editor'
import App from './App.vue'
const app = createApp ( App )
app . component ( 'medium-editor' , MediumEditor )
app . mount ( '#app' )لا تنس تضمين ملف CSS في مشروعك لـ Vue 2
import 'medium-editor/dist/css/medium-editor.css'
import 'vuejs-medium-editor/src/themes/default.css'
// for the code highlighting
import 'highlight.js/styles/github.css' أو في styles مثل أدناه
<style lang = "css" >
@import "~medium-editor/dist/css/medium-editor.css" ;
@import "~vuejs-medium-editor/src/themes/default.css" ;
/*@import '~highlight.js/styles/github.css';*/
@import '~highlight.js/styles/github.css' ;
< / style >لـ Vue 3
import 'medium-editor/dist/css/medium-editor.css'
import 'vuejs-medium-editor/dist/themes/default.css'
// for the code highlighting
import 'highlight.js/styles/github.css' أو في styles مثل أدناه
<style lang = "css" >
@import "medium-editor/dist/css/medium-editor.css" ;
@import "vuejs-medium-editor/dist/themes/default.css" ;
/*@import '~highlight.js/styles/github.css';*/
@import 'highlight.js/styles/github.css' ;
< / style > < medium-editor
v-model = " content "
: options = " options "
: onChange = " onChange "
v-on : uploaded = " uploadCallback "
/>
<script>
import Editor from 'vuejs-medium-editor'
export default {
data() {
return {
content: '',
options: {},
}
},
components: {
'medium-editor': Editor,
},
methods: {
onChange() {
console.log(this.content)
},
uploadCallback(url) {
console.log('uploaded url', url)
},
},
}
</script>يمكنك تخصيص أزرار شريط الأدوات أيضًا
options: {
toolbar : {
buttons : [
'bold' ,
'italic' ,
'underline' ,
'quote' ,
'h1' ,
'h2' ,
'h3' ,
'pre' ,
'unorderedlist' ,
]
}
}الخيارات المتاحة: تتوفر جميع الخيارات هنا ، يمكنك أيضًا تجاوز الخيارات كما في المحرر المتوسط ؛
options: {
buttons : [
'anchor' ,
{
name : 'pre' ,
action : 'append-pre' ,
aria : 'code highlight' ,
tagNames : [ 'pre' ] ,
contentDefault : '<b><\></b>' ,
contentFA : '<i class="fa fa-code fa-lg"></i>' ,
} ,
]
}باستخدام خيار الصورة في شريط الأدوات ، أضف رابط الصورة ، وتمييزه لتحرير ، ثم حدد أيقونة الصورة
buttons: [
{
name : 'image' ,
action : 'image' ,
aria : 'insert image from url' ,
tagNames : [ 'img' ] ,
contentDefault : '<b>image</b>' ,
contentFA : '<i class="fa fa-picture-o"></i>' ,
} ,
]أيضًا ، الخيار المتاح: بفضل طلب سحب Ergofriend على الريبو الأصلي
options: {
uploadUrl : "https://api.imgur.com/3/image" ,
uploadUrlHeader : { 'Authorization' : 'Client-ID a3tw6ve4wss3c' } ,
file_input_name : "image" ,
file_size : 1024 * 1024 * 10 ,
imgur : true ,
}pre ، انظر الخيارات أعلاه) يجب عليك تضمين ملف highligh.js CSS داخل الأنماط
<style >
/*default css */
@import 'highlight.js/styles/default.css' ;
/* github style */
@import 'highlight.js/styles/github.css' ;
< / style >يمكنك الحصول على المزيد من أنماط الموضوع هنا
< medium-editor : prefill = " defaultValue " : read-only = " true " /> قم بإنشاء ملف مكون إضافي vuejs-medium-editor.js Inside /plugins Dir
import Vue from 'vue'
import MediumEditor from 'vuejs-medium-editor'
Vue . component ( 'medium-editor' , MediumEditor )استيراد مكون إضافي في nuxt.config.js مع تعطيل وضع SSR
plugins: [ { src : '~/plugins/vuejs-medium-editor' , ssr : false } ]قم بتضمين ملف CSS لـ Vue 2
css: [
'medium-editor/dist/css/medium-editor.css' ,
'vuejs-medium-editor/src/themes/default.css' ,
'highlight.js/styles/github.css' , //if using code highlight
]ل vue 3
css: [
'medium-editor/dist/css/medium-editor.css' ,
'vuejs-medium-editor/dist/themes/default.css' ,
'highlight.js/styles/github.css' , //if using code highlight
] ماجاك إيمانويل
معهد ماساتشوستس للتكنولوجيا
ترميز سعيد ، نجمة قبل شوكة ؟؟؟