ckeditor for html markup
This commit is contained in:
parent
8735a2bbd4
commit
2fd9222f8a
22 changed files with 1384 additions and 1659 deletions
37
resources/assets/js/ckeditor.js
vendored
Normal file
37
resources/assets/js/ckeditor.js
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
// import Vue from 'vue';
|
||||
// import CKEditor from '@ckeditor/ckeditor5-vue';
|
||||
import ClassicEditor from '@ckeditor/ckeditor5-build-classic';
|
||||
// import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials';
|
||||
|
||||
// const app = new Vue({
|
||||
// name: 'app',
|
||||
// components: {
|
||||
// // Use the <ckeditor> component in this view.
|
||||
// ckeditor: CKEditor.component
|
||||
// },
|
||||
// props: ['desc_markup'],
|
||||
// data() {
|
||||
// return {
|
||||
// editor: ClassicEditor,
|
||||
// //desc_markup: '<p>Content of the editor.</p>',
|
||||
// editorConfig: {
|
||||
// // The configuration of the editor.
|
||||
// }
|
||||
// };
|
||||
// }
|
||||
// });
|
||||
var allEditors = document.querySelectorAll('.ckeditor');
|
||||
|
||||
for (var i = 0; i < allEditors.length; ++i) {
|
||||
ClassicEditor
|
||||
.create(allEditors[i], {
|
||||
|
||||
toolbar: ['heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote']
|
||||
})
|
||||
.then(editor => {
|
||||
console.log(editor);
|
||||
})
|
||||
.catch(error => {
|
||||
console.error(error);
|
||||
});
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
<template lang="html">
|
||||
<template>
|
||||
<div>
|
||||
<div id="map">
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// https://alligator.io/vuejs/vue-modal-component/
|
||||
<template lang="html">
|
||||
<template>
|
||||
<div class="modal-backdrop">
|
||||
<div class="popup">
|
||||
<div class="fm_overlay" >
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue