import Notification from './notification'
import notify from './notify'export default (Vue) => {
Vue.component(Notification.name, Notification)
Vue.prototype.$notify = notify
}
在main.js引入
import Notification from './components/notification'
Vue.use(Notification)
使用
this.$notify({
content: 'Hello'
})
效果

希望本文所述对大家vue.js程序设计有所帮助。










