[ ] Noty.js V3 javascript . vuejs |
import Noty from 'noty';
new Noty({
text: 'Some notification text',
}).show();
new Noty({
text: 'Some notification text',
animation: {
open : 'animated fadeInRight',
close: 'animated fadeOutRight'
}
}).show();
//
this.$notice.info("New version of the app is available!")
// ,
//
this.$notice.info("Hey! Something very important here...", {
timeout: 6000,
layout: 'topLeft'
})