(sorry for the bracketed thing -- not escpated by this commenting system it seems)
It seems the only way to incorporate Windy is via explicit script tag, that is, not via an installable package from NPM, correct? The specific issue I note is that there wouldn't be a way to control the loading of the components as instructed in the documentation, that is, first Leaflet, then Windy.
For my Leaflet apps, I basically have:
import L from 'leaflet';
(and then us L as usual).
For also testing this setup with Windy, assuming an NPM-installable 'windy' package, I would then expect to be able to just do something like this:
import { windyInit } from 'windy';
and then use windyInit, etc.
Any comments or additional (technical) pointers that can clarify what's actually possible in term of integrations with frameworks like Vue would be very welcome. Thanks!