语音通知 (vue-notification)
Vue.js 2+ notification plugin using Velocity for animations.
Vue.js 2+通知插件,使用Velocity制作动画。
安装 (Install)
npm install --save vue-notification
如何 (How to)
In main.js:
在main.js中:
import Vue from 'vue'
import Notifications from 'vue-notification'
Vue.use(Notifications)
In App.vue:
在App.vue中:
<notifications group="foo" />
In any of your files:
在您的任何文件中:
this.$notify({
group: 'foo',
title: 'Important message',
text: 'Hello user! This is a notification!'
});
翻译自: https://vuejsexamples.com/vue-js-2-library-for-showing-notifications/