I am trying to use the new notify component in my laravel project.
But nothing works:
import {Notify} from “quasar-framework/dist/quasar.mat.esm”;
If I try to use it like described in the documentation: Notify.create(‘bla’) nothing happens. No notification and no errors.
Importing via import {Notify} from ‘quasar’ has never worked for any component (also before v0.15). I always needed to say from ‘quasar-framework’ or now in v0.15 'from “quasar-framework/dist/quasar.mat.esm”;
Any idea?