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 !
27 lines
570 B
TypeScript
Executable File
27 lines
570 B
TypeScript
Executable File
import { defineComponent, ref, computed } from 'vue'
|
|
|
|
import MixinBase from '@src/mixins/mixin-base'
|
|
import { CCopyBtn } from '../CCopyBtn'
|
|
import { useUserStore } from '@store/UserStore'
|
|
import { useQuasar } from 'quasar'
|
|
import { useI18n } from '@/boot/i18n'
|
|
import { tools } from '@store/Modules/tools'
|
|
|
|
export default defineComponent({
|
|
name: 'CVerifyTelegram',
|
|
components: { CCopyBtn },
|
|
props: {},
|
|
setup(props, { emit }) {
|
|
const $q = useQuasar()
|
|
const { t } = useI18n()
|
|
|
|
const userStore = useUserStore()
|
|
|
|
|
|
return {
|
|
tools,
|
|
}
|
|
}
|
|
})
|
|
|