Rodney Vg

Rodney Vg

1598645820

VueJS component for TinyMCE

vue-mce

VueJS component for TinyMCE

Installation

Direct <script /> include:

Include VueMce after vue and tinymce. VueMce will be registered as a global component.

<script src="link/to/tinymce"></script>
<script src="link/to/vue"></script>
<script src="https://cdn.jsdelivr.net/npm/vue-mce@latest/dist/vue-mce.web.js"></script>

NPM

npm install vue-mce --save

Yarn

yarn add vue-mce

When used with a module system, you must explicitly install VueMce via Vue.use():

import Vue from 'vue';
import VueMce from 'vue-mce';

Vue.use(VueMce);

It is possible to import only component to have possibility register it locally:

import { component } from 'vue-mce';

const MyComponent = {
  components: {
    'vue-mce': component,
  },
};

You don’t need to do this when using global script tags.

Live example

Logo

Usage

Props

By default VueMce requires no props, you can simply do this:

<whatever>
  <vue-mce />
</whatever>

Name

html name attribute. Useful for non-ajax form submitting

Config

You can pass to VueMce component any valid tinymce config that you want to use:

<template>
  <vue-mce :config="config" />
</template>
new Vue({
  data: () => ({
    config: {
      theme: 'modern',
      fontsize_formats: "8px 10px 12px 14px 16px 18px 20px 22px 24px 26px 39px 34px 38px 42px 48px",
      plugins: 'print preview fullpage powerpaste searchreplace autolink',
      toolbar1: 'formatselect fontsizeselect | bold italic strikethrough forecolor backcolor link',
    },
  }),
});

Make sure that you don’t pass to config selector field because it have priority over the target field which VueMce uses to mount component

Value

You can pass the value prop to VueMce component:

<template>
  <vue-mce :value="myValue" />
</template>
new Vue({
  data: () => ({
    myValue: 'Hello World!',
  }),
});

v-model

You can use the v-model directive to create two-way data-binding.

<template>
  <vue-mce v-model="myValue" />
</template>

ref

To set editor content, you can simply set ref to this component and call this.$refs['YOUR_REF'].setContent(yourContent)

<template>
  <vue-mce ref="editor" />
</template>
new Vue({

  methods: {
    getData () {
      API.get()
        .then((res) => {
          this.$refs['YOUR_REF'].setContent(res.content);
        });
    },
  },

  created () {
    this.getData();
  },
});

Events

VueMce provides 5 types of events: init, error, input, change, destroy

<template>
  <vue-mce
    @init="handleInit"
    @error="handleError"
    @input="handleInput"
    @change="handleChange"
    @destroy="handleDestroy"
  />
</template>
new Vue({

  methods: {
    handleInit (editor) {
      /* This handler fires when tinymce editor is successfully initialized.
         Receives tinymce editor instance as argument

         You can save the editor instance to variable and
         call editor.setContent(yourContent) any time you want */
    },

    handleError (err) {
      /* Fires when an error occurred. Receives error object */
    },

    handleInput (value) {
      /* Fires whenever editor content changes. Receives generated HTML */
    },

    handleChange (value) {
      /* Fires only when editor emits focusout event. Receives generated HTML */
    },

    handleDestroy (editor) {
      /* Fires before VueMce component destroys. Receives tinymce editor instance */
    },
  },
});

Questions

If you have any troubles, questions or proposals you can create the issue

Download Details:

Author: Eazymov

Demo: https://codepen.io/Eazymov/full/MEzGYv/

Source Code: https://github.com/Eazymov/vue-mce

#vuejs #vue #javascript

What is GEEK

Buddha Community

VueJS component for TinyMCE

Hire Dedicated VueJS Developers

Want to Hire VueJS Developer to develop an amazing app?

Hire Dedicated VueJS Developers on the contract (time/project) basis providing regular reporting about your app. We, at HourlyDeveloper.io, implement the right strategic approach to offer a wide spectrum of vue.js development services to suit your requirements at most competitive prices.

Consult with us:- https://bit.ly/2C5M6cz

#hire dedicated vuejs developers #vuejs developer #vuejs development company #vuejs development services #vuejs development #vuejs developer

Ilaria  Dugg

Ilaria Dugg

1589190180

How to Publish a Vuejs Component on NPM

In this post, I will explain you now how to publish your own VueJs component on npm with a minify and ES5 build.

#vuejs-development #vuejs-2 #vuejs #github #npm

Luna  Mosciski

Luna Mosciski

1599289468

Better Component Composition in VueJS

In VueJS there are few ways to compose components and reuse logic. In this article, I would like to demonstrate a way to boost composition in Vuejs (2.* and 3.*).

I really like the recent proposals regarding the Composition API, but I think that can be part of a broader view.

Below, you can find a component implementing a general use case (a simple data fetching from a remote endpoint and displaying the different transitions and data), though most of the logic is always duplicated along with the template, data, and other variables when the same logic is applied to other places or components.

<template>
<div>
    <div v-if="loading"> Loading... </div>
    <div v-if="error"> An Error occured, please try again</div>
    <div v-if="hasData"> {{ data }} </div>
</div>
</template>

</template>

<script>
    export default {
        data() {
            return {
                loading: false,
                error: false,
                data: {}
            }
        },
        methods: {
            fetchData() {
                this.loading = true;
                setTimeout(() => {
                    this.data = { text: 'example' };
                    this.loading = false;
                }, 4000);
            }
        },
        computed: {
            hasData() {
                return this.data && !!this.data.text;
            }
        },
        mounted() {
            this.fetchData();
        }
    }
</script>

How do we refactor this component and improve it? Let’s go step-by-step and make this component more readable and reusable.

#functional #components #vuejs #jsx #composition #vue

Oleta  Orn

Oleta Orn

1599030441

Vue is an amazing framework for 2020. Why?

Image for post

An amazing conference regarding the Vue framework was held in the US in the first week of March 2020 for two fantastic days. Some spectacular presentations were given during that time regarding the design, feature, and application tools of the framework. One of the most eye gazing things was that combining vue.js development services, professionals, and others as there were more than 900 attendees at the event. The brand new composition API for the Vue3 was the talk of the town.

All this leads to the conclusion that Vue might have an opportunity to be the most amazing for the year 2020. While the first quarter has been significantly better for it, let’s look at some of the characteristics which make the Vue an amazing framework for 2020.

Friendly learning curve & ease of integration

Ask any Vue.js developer and they will tell you that how working with this framework is very relaxing and even if you are a beginner, fundamental knowledge of HTML, CSS, and Javascript is good enough to build a simple application.

Do you know more than 75% of Vue.js development services just prefer it because of its ease of integration? This means you can hire Vue.js developers to build the application right from the scratch or can get an existing application accommodated to your requirements.

Although the inbuilt guide and documentation of the Vue framework make it sufficient for you to start coding.

This might interest you to know that Vue.js is for progressive web applications which also support libraries like Vue router, Vuex, Vue Test Utils, Vue-dev tools, Vue CLI for performing various functions.

It may seem a bit exaggerated but the truth is whether its loader, renderer, component caching or asset preload, etc every tool, every component in this framework performs very efficiently.

Top reasons why Vue.js is becoming the most trending JS-based framework

As noted above how Vue.js development services state that creating an application with Vue is very simple. So now we are going to look briefly into some of the top reasons why Vue.js development companies favor it from the stack of all JS-based frameworks.

Adaptable development environment: Very beneficial to the large scale projects, now and again Vue.js has proved that it adjusts with the components of other applications and develops it in remarkably less time compared to other JS-frameworks. Have you wondered why people are using it comprehensively?

Supported Libraries: Vue.js provides support libraries for any possible difficulties a developer might face. As Vue Router is for routing, Vuex for state management, Vue Test Utils for unit testing, Vue-dev tools for debugging, and Vue CLI for plugin management. And the best part here is this all inbuilt are accessible 24/7. Vue.js developer can rectify or alter the coding with the help of these support libraries.

Great Performance: For developing mobile apps, this framework tends to perform well in comparison to other frameworks. The speed of the loading page is significantly better than any other Javascript. Whether it’s a website or any other application, reliability and great performance is always the best advantage of the framework.

Community meets: Live events or meetings are organized regularly so that the Vue.js developer can get the regular updates of the features and benefits of the framework. This community is growing bigger day by day and is managed by Evan You, the developer of Vue.js framework himself.

#vue #vuejs-development-company #vuejs-developer #vuejs #vuejs-development

Hire Dedicated Vuejs Developers - Hire Vue.Js Development Company

The JavaScript framework that has grabbed the attention of New Age Website and App developers for its ease of developing interactive elements is the VueJS framework.

Want an elegant and interactive app for your business with VueJS?

Hire dedicated VueJS developers from WebClues Infotech as they have the knowledge, skills, and past experience in developing successful apps with the use of the VueJS framework. Also, do not worry much about the prices as they offer quite a flexible pricing structure and an option to choose the best suitable one for you.

Give your business the boost it needs with the mobile app development.

Get in touch with us !!

Hire VueJS developers Now: https://www.webcluesinfotech.com/hire-vuejs-developer/

Email: sales@webcluesinfotech.com

#hire dedicated vuejs developers #hire vuejs developer #hire vuejs developers #hire vue.js developer #hire vuejs developers in india #hire vue.js development company