1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| import Notification from './notification.vue';
| import Vue from 'vue';
|
| Notification.newInstance = properties => {
| const _props = properties || {};
|
| const Instance = new Vue({
| render (h) {
| return h(Notification, {
| props: _props
| });
| }
| });
|
| const component = Instance.$mount();
| document.body.appendChild(component.$el);
| const notification = Instance.$children[0];
|
| return {
| notice (noticeProps) {
| notification.add(noticeProps);
| },
| remove (name) {
| notification.close(name);
| },
| component: notification,
| destroy (element) {
| notification.closeAll();
| setTimeout(function() {
| document.body.removeChild(document.getElementsByClassName(element)[0]);
| }, 500);
| }
| };
| };
|
| export default Notification;
|
|