Nuxt Plugins - How to use arbitrary Vue libraries in your NuxtJS app

Not all VueJS libraries work out of the box with Nuxt. Some of them have custom modules, others have Nuxt or SSR-specific instructions, but for the rest we have to make our own plugin. Fortunately, making our own plugins is pretty simple! In this tutorial we create a Nuxt plugin for the vuetify-datetime-picker library. This is an ES6 plugin, so we’ll see how to put it into our transpilation pipeline. Once we have everything working, the final section will be using the new library within our app to crea
Back to Top