github magicasaservice/vue-equipment v1.0.0-beta.34
Release 1.0.0-beta.34

latest release: v1.0.0-beta.35
pre-releaseone month ago

⚠️ Breaking Changes

We have decided to remove both the. plugins/index.js as well as the composables/index.js files. This means you will now have to import plugins and composables directly from their respective parent folder.

Before:

import { useMagicEmitter, useMagicDrawer } from '@maas/vue-equipment/plugins'

After:

import { useMagicEmitter } from '@maas/vue-equipment/plugins/MagicEmitter'
import { useMagicDrawer } from '@maas/vue-equipment/plugins/MagicDrawer'

This change was made to prevent a tree shaking and peer dependency bug that was reported earlier. The documentation has also been updated accordingly.

Full Changelog: v1.0.0-beta.33...v1.0.0-beta.34

Don't miss a new vue-equipment release

NewReleases is sending notifications on new releases.