You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Vue 3 removed $children, which was used in this library with Vue 2. To
work around that, and to support any kind of component without customization
required, now users must provide a :ref="id" for each component. The ref value must match the id given to the component. This library uses
that ref value to match with the id, and locate the element via $parent.$refs. This means, too, that the caller of Lumino must hold the $refs. See the example code and the README.md for an example.
Added a dependabot specifying package ecosystems github-actions and npm
Upgraded versions of GitHub Actions used, added Node setting it to v14 (due to SSL issues with 18+)