Non permettere di aggiungere un Gruppo con lo stesso nome o codice quando cancelli un Gruppo, cancella anche tutti i riferimenti sugli utenti di quel gruppo. Errore caricamento Immagini !
19 lines
323 B
TypeScript
Executable File
19 lines
323 B
TypeScript
Executable File
import { defineComponent } from 'vue'
|
|
|
|
import { CCopyBtn } from '../CCopyBtn'
|
|
import { useUserStore } from '@store/UserStore'
|
|
import { tools } from '@store/Modules/tools'
|
|
|
|
export default defineComponent({
|
|
name: 'CVerifyEmail',
|
|
components: { CCopyBtn },
|
|
props: {},
|
|
setup() {
|
|
|
|
return {
|
|
tools,
|
|
}
|
|
}
|
|
})
|
|
|