Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

marcnewton/laramix-vue-tinymce-5

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

laramix-vue-tinymce-5

Self hosted TinyMCE ^5.0.8 for Vue ^2.6.10 using Laravel Mix ^4.0.15

This setup method works when used with modals and v-if directive.

Installation

yarn add --dev tinymce

Configure Webpack

Don't bother trying to use ES5/6 imports, it simply does not work very well, you will get resource errors.

In webpack.mix.js add:

mix
    .copy('node_modules/tinymce/tinymce.min.js', 'public/js/tinymce.min.js')
    .copy('node_modules/tinymce/themes/silver/theme.min.js', 'public/js/themes/silver/theme.min.js')
    .copy('node_modules/tinymce/skins/content/default/content.min.css','public/js/skins/content/default/content.min.css')
    .copy('node_modules/tinymce/skins/ui/oxide/content.min.css','public/js/skins/ui/oxide/content.min.css')

Load TinyMCE

Use blade script push or add <script src="/js/tinymce.min.js"></script> where TinyMCE is needed.

@push('scripts')
    <script src="/js/tinymce.min.js"></script>
@endpush

Add Vue Helper

Place copy components/helpers/v-editor from this repository into your project.

Register globally:

import vEditor from "../components/helpers/v-editor"
Vue.component('v-editor', vEditor);

Or register in a component:

import vEditor from "../components/helpers/v-editor"
    export default {

        components: { vEditor },
       
        ...
    }

How to use

To use in your template:

<v-editor v-model="description"></v-editor>

Done.

How to configure init options

When following the offcial guide, the tinymce.init({}) options object can be set as a property of v-editor.

<v-editor v-model="input.description" :options="{ inline: true }"></v-editor>

Here is a full example in use inside a VuetifyJS v-dialog:

<template>

    <v-dialog v-if="display" v-model="display" width="720" persistent>

        <v-card>

            <v-toolbar card dark color="primary">

                <v-toolbar-title>Example</v-toolbar-title>

                <v-spacer></v-spacer>

                <v-btn icon color="error" @click="close" title="Close">
                    <v-icon>mdi-close</v-icon>
                </v-btn>

            </v-toolbar>

            <v-container>

                <v-form>

                    <v-editor v-model="input.description" :options="editorOptions"></v-editor>

                </v-form>

            </v-container>

        </v-card>

    </v-dialog>

</template>

<script>

    import VEditor from "../../components/helpers/v-editor";

    export default {

        components: {VEditor},

        data: () => ({

            display: false,

            input: {
            
                description: '<p>Content of the editor.</p>'

            },

            editorOptions: {

                inline: true

            }

        }),

        methods: {
        
            close() {

                Object.assign(this.$data, this.$options.data());

            }

        }

    }

</script>

About

Self hosted TinyMCE ^5.0.8 for Vue ^2.6.10 using Laravel Mix ^4.0.15

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.