[Vuejs]-Using three.js library client-side in vue.js/nuxt.js

1👍

I imported three in my nuxt app recently successfully, even though i’m not checking if it is client side.

From what i can see you import like this: import * as Three from `three`but then you are calling it with three and not Three. It’s case sensitive!

👤sintj

Leave a comment