How to use the uiv.Notification.notify function in uiv

To help you get started, we’ve selected a few uiv examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github rundeck / rundeck / rundeckapp / grails-spa / src / pages / project-nodes-config / ProjectPluginConfig.vue View on Github external
notifyError(msg: string, args: any[]) {
      Notification.notify({
        type: "danger",
        title: "An Error Occurred",
        content: msg,
        duration: 0
      });
    },
github support-project / knowledge / frontend / src / components / App.vue View on Github external
alerts.forEach(element => {
        if (element.notify) {
          Notification.notify({
            type: element.type,
            title: element.title,
            content: element.content
          })
          element.notify = false
        }
      })
    }

uiv

Bootstrap 3 components implemented by Vue.

MIT
Latest version published 1 year ago

Package Health Score

60 / 100
Full package analysis

Popular uiv functions