Even though the output file clearly says export default Tinybox;, Nuxt keeps telling me stuff like export 'default' (imported as 'Tinybox') was not found in 'vue-tinybox'.
The component itself doesn't really work properly in an SSR-environment; gotta look into it.
I think I have figured it out without even addressing it. I changed the way I import the component in Nuxt and it worked, so hurray. Testing is still required though
Even though the output file clearly says
export default Tinybox;
, Nuxt keeps telling me stuff likeexport 'default' (imported as 'Tinybox') was not found in 'vue-tinybox'
.The component itself doesn't really work properly in an SSR-environment; gotta look into it.