set "#tinymce/tinymce-vue#^3" - for vue 2
but this TinyCloud wrapper loads TinyCloud, make it use the self-hosted version?
Is there a normal, human instruction?
ps: I'm trying to put all this in nuxt 2
Related
Recently I migrated my web application to Vue 3 which is implemented with Vue 2 earlier. This app is using as a web component for other websites with different frameworks. In vue 2 once the application is build as web component it is nicely generating the the compressed version of js files and can add to other website direcly. In vue 2 I used below command to build the web component.
vue-cli-service build --target wc --name widget-v2 ./src/components/EntryComponent.vue
It is generating the js files and we can simply import that files to other website and add the web component tag like : <widget-v2></widget-v2> to html and it works.
But once I migrated the app to Vue 3 when I try to build the app as web component it is showing the below error.
I search through internet and found out we have to change the build command like below.
vue-cli-service build --target lib --name widget-v3 src/components/EntryComponent.vue
But the issue is once the js files are generated and when I import the js to other web page and add the tag same as easier it does not work.
I checked the demo.html how the widget added in there. But it is different from earlier than Vue2 version which is added like this. But we can pass props in this method which I tried and generated errors.
My question is how can we add the web component as simply as in Vue 2 when we use Vue 3.
I want to create simple blog with netlify cms and i have no idea is there any plugin with same purpose as nuxt content and with complete api in vue 3.
I look to Vite Plugin MD, while it's a great plugin but i have not found same function in nuxt content like fetch.
Is there any plugin with same functionality as nuxt content for vue 3 + vite?
Vitesse is still the best alternative to use Vue3 + Vite.
It's made by a guy who is both in the Vue and Nuxt core team btw.
It has some markdown support, not 100% equivalent to Nuxt content but it's a start. Otherwise, you can always complete it with some homemade solution like remark.
I have a legacy web application which I have introduced Vue into in a few places, via CDN. I have upgraded it from Vue 2 to Vue 3. There is a component used there which breaks with Vue 3, but there is a Vue 3 version of it. However, the author states this: "The component is packaged mainly for use with bundlers, if you require a browser build - post an issue." I do require a browser build. Is there some easy way I can do this for myself? I wasn't planning to use a bundler for this application, so I'm hoping I can use the existing modules to create a .js file I can use from the browser?
As Nuxt 3 is in serious alpha development, I was wondering if there's any other tool that offers a similar experience to Nuxt 3 whilst using Vue 3.
Vite-SSG is also in Beta, but I don't know the stability of it.
Is there something else?
Yep! Try to look at VitePress or vite-ssg. This things allow you to generate SSG app easier than Nuxt 3 and you can use all vue3 compatible libraries. Nuxt 3 is not ready for production now even in rather small apps
I am trying to add the html5audio plugin in my ckeditor 4 in vue but everytime I am getting html5audio are not found ..... I have two questions. First of all, can html5audio plugin be installed in ** "ckeditor4-vue": "^1.0.1"**. Second one, is there any plugin where I can add html5 audio link in my vue project?