Dennis Bruner
Dennis Bruner
If you use Nuxt.js you can check for the variable `process.browser` before trying to show notifications: ```javascript // ... if (process.browser) { this.$notification.show('Hello World', { body: 'This is an example!'...
Are you using any other plugins or just this one? @rianmartins
Try setting `modules` to `true` in the `.babelrc` file like this: ``` { "presets": [ ["env", { "modules": true }], "stage-3" ] } ```