vue-notifyjs icon indicating copy to clipboard operation
vue-notifyjs copied to clipboard

Need support for asynchronous notifications

Open 03sarath opened this issue 3 years ago • 0 comments

notifyVue: async (verticalAlign, horizontalAlign) => {
      let color = Math.floor(Math.random() * 4 + 1)
      this.$notify.async({
        message: 'Hello',
        horizontalAlign: horizontalAlign,
        verticalAlign: verticalAlign,
        type: this.type[color]
      })
    }

will this work

03sarath avatar Mar 02 '21 17:03 03sarath