This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Description
Description
I had trouble to install buefy-next into a Vue 3 app on CodePen. I had to let the app use the buefy-next plugin but was not able to obtain the plugin object.
- Adding
https://unpkg.com/@ntohq/buefy-next/dist/buefy.js to the external scripts did not work; it populated Buefy in the global scope, though, it was an empty object ({}).
- Neither worked Importing
https://esm.sh/@ntohq/buefy-next.
I think we would need to distribute a "global" variant of buefy-next, which puts the buefy-next plugin into the top-level var Buefy. Vue 3 provides such a variant: https://unpkg.com/vue@3.4.21/dist/vue.global.js
Why Buefy need this feature
If buefy-next is supported on CodePen, we can update the CodePen in the issue template, which currently does not use buefy-next but Buefy for Vue 2.
This will also allow us to include buefy-next via a <script> tag.