Add notifications to give feedback after some actions

This commit is contained in:
Bubka
2022-09-19 12:19:34 +02:00
parent ca910e159f
commit 95554a7034
10 changed files with 16 additions and 1 deletions

View File

@ -32,6 +32,7 @@
await this.form.post('/api/v1/groups')
if( this.form.errors.any() === false ) {
this.$notify({ type: 'is-success', text: this.$t('groups.group_successfully_created') })
this.$router.push({ name: 'groups' });
}