I am using unocss, instead of tailwindcss in a nuxtjs 2 project. I then want to use a few plugins like the flowbite plugin for tailwindcss. How do I make this to work with unocss?
Related
I'm using Nuxt3 for a project and when installing it with the cli in the docs it generated a vue 2.7 project.
How can I get to use vue 3?
If you want to use Vue3, you'll need to follow CLI's instructions for Nuxt3 located here: https://nuxt.com/docs/getting-started/introduction
If you want to use some Vue-specific packages, here you are: https://v3.nuxtjs.org/guide/directory-structure/plugins/#vue-plugins
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 am new to nuxt. I want to know whether is it possible to use Buefy on nuxt just by using CDN
as I directly imported beufy CDN in script in head function of nuxt.config
But it gave error while using navbar of beufy that the component is not registered correctly.
Nuxt supports buefy by default, when installing using npx create-nuxt-app you'll be asked if you want to use a component framework (buefy is an option here).
If you want to use it in an installed project you can npm install buefy --save and then add "nuxt-buefy" in the modules array of your nuxt.config
Im making a nativescript-vue project and I will utilize MQTT however I cant see any library related to it. However there are libraries for MQTT Nativescript for TS, JS, Angular.. Can I apply this to tns vue?
TypeScript / Angular / Vue, end of the day everything is just JavaScript. Especially when there is a feature available for NativeScript Core it should be easily accessible on the frameworks too, Angular / Vue.
Simply import the plugin in Vue and start using it, except removing the type declarations if you are using JavaScript for Vue development.
This question is solved when edusperoni officially continued the work of krislankford for nativescript-mqtt. This is the new repo of nativescript-mqtt: https://github.com/edusperoni/nativescript-mqtt and works in any nativescript templates.
Im using vuetify and intellij editor - and cannot make autocomplete to work
I have added vuetify css and js like below
preferences > templates and languages > (added paths to vuetify css and js)
Vuetify components are supported since 2017.3.2 (see https://youtrack.jetbrains.com/issue/WEB-28318#comment=27-2578795) - just make sure that vuetify is installed in your project (npm i vuetify --save) and Vue.js plugin is installed and enabled.
See https://blog.jetbrains.com/webstorm/2018/01/working-with-vue-js-in-webstorm/ for more info.
Vuetify mixins and directives are not yet supported, please follow WEB-30070 for updates