2021-12-23 14:14:39 +01:00
|
|
|
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'
|
2022-02-09 19:47:40 +01:00
|
|
|
import { tools } from '@store/Modules/tools'
|
2021-12-23 14:14:39 +01:00
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
|
name: 'CVerifyTelegram',
|
|
|
|
|
components: { CCopyBtn },
|
|
|
|
|
props: {},
|
|
|
|
|
setup(props, { emit }) {
|
|
|
|
|
const $q = useQuasar()
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
|
|
|
|
|
const userStore = useUserStore()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
2022-02-28 17:20:31 +01:00
|
|
|
tools,
|
2021-12-23 14:14:39 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|