[Vuejs]-Vuejs jquery issue when trying to import bootstrap

0👍

Seems like some import can’t be done server-side. Using jQuery functions that are not activated on the server (maybe using window or some other global not available).

I had to require the package in the mounted function (only triggered client-side).

Find my nuxtjs issue there : https://cmty.app/nuxt/nuxt.js/issues/c10474

Leave a comment