Skip to content

Releases: Byloth/vuert

v1.2.1

05 Feb 08:55
f33a99c
Compare
Choose a tag to compare

Patch release

Added the Vuert.js' module for Nuxt.js

To use it, simply install it as dependency in your Nuxt.js project...

npm install --save-dev @byloth/nuxt-vuert-module

... then add it in your nuxt.config.ts file:

export default defineNuxtConfig({
  /* [...] */

  modules: [
    /* [...] */

    "@byloth/nuxt-vuert-module"
  ],

  /* [...] */
})

You will be able to access the AlertHandler component and the useVuert composable without importing anything into your *.vue file... Nuxt.js will imports that for you automatically.

Also, you will able to access the Vuert.js active instance by simply using the syntax:

const { $vuert } = useNuxtApp();

v1.2.0

08 Jan 10:36
2cee5ec
Compare
Choose a tag to compare

Minor release

Now whenever you'll call the emit method, it will return back the instance on the Context attached to the emitted Alert.
You can subscribe for onOpening, onOpened, onClosing and onClose events and programmatically call methods open, reject and resolve on it.
You can also await it just like a normal Promise and it will return the alert result.

v1.1.0

16 Jul 10:11
16356f7
Compare
Choose a tag to compare

Minor release

  • Solved missing definition for AlertHandler component.

v1.0.5

15 Jul 15:01
dc77799
Compare
Choose a tag to compare

Patch release

  • Updated dependencies. 💊💉

v1.0.4

11 Jun 14:53
Compare
Choose a tag to compare

Patch release

  • Removed global error handler.

v1.0.3

11 Jun 14:27
Compare
Choose a tag to compare

Patch release

  • Fixed error handling and console logging behaviour.

v1.0.2

11 Jun 13:54
Compare
Choose a tag to compare

Patch release

  • Now you can access Vuert instance from globally across the app.

v1.0.1

27 May 10:58
Compare
Choose a tag to compare

Patch release

  • Minor fixes and little improvements.

v1.0.0

25 May 14:35
Compare
Choose a tag to compare

First official release 🔥

Now you can use it.