How to use the ant-design-vue.notification.success function in ant-design-vue

To help you get started, we’ve selected a few ant-design-vue 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 pycook / cmdb / cmdb-ui / src / views / cmdb / ci / index.vue View on Github external
.then(res => {
              that.loading = false
              notification.success({
                message: that.$t('tip.deleteSuccess')
              })
              that.$refs.table.clearSelected()
              setTimeout(() => {
                that.$refs.table.refresh(true)
              }, 1500)
            })
            .catch(e => {
github pycook / cmdb / cmdb-ui / src / views / cmdb / preference / index.vue View on Github external
.then(() => {
              notification.success({
                message: that.$t('tip.cancelSuccess')
              })
              that.resetRoute()
            })
            .catch(e => {
github pycook / cmdb / cmdb-ui / src / views / cmdb / ci / modules / CreateInstanceForm.vue View on Github external
.then(res => {
              notification.success({
                message: this.$t('tip.addSuccess')
              })
            })
            .catch(e => {
github pycook / cmdb / ui / src / views / cmdb / ci / modules / CreateInstanceForm.vue View on Github external
.then(res => {
              notification.success({
                message: '新增成功'
              })
            })
            .catch(e => {