vue-tinymce icon indicating copy to clipboard operation
vue-tinymce copied to clipboard

If Included through NPM, should not be packaged with Vue

Open felorhik opened this issue 7 years ago • 0 comments

Had this issue but could not track it down for months, Vue was loading twice. This is due to the "main" script in package.json pointing to the minified file, rather then the vue file.

This will lead to 2 different versions of Vue to load, it does not cause any real issues other then bloating the app and also both versions of Vue will bootstrap themselves (so it can hurt performance).

Anyway the fix would be changing them main portion of the package.json to the vue file, my testing on my app has not shown any problem swapping the include to 'vue-tinymce/src/vue-tinymce' but I am not sure if there are any repercussions that would happen overall.

felorhik avatar Aug 28 '17 22:08 felorhik