Sulla foto della notifica il click non funziona
check App
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { defineComponent, PropType, ref } from 'vue'
|
||||
import { defineComponent, PropType, ref, computed } from 'vue'
|
||||
import { useI18n } from '@src/boot/i18n'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
@@ -6,6 +6,7 @@ import { useQuasar } from 'quasar'
|
||||
|
||||
import { validationMixin } from 'vuelidate'
|
||||
import { Logo } from '../logo'
|
||||
import { CCheckAppRunning } from '../CCheckAppRunning'
|
||||
import { static_data } from '@/db/static_data'
|
||||
import { tools } from '@store/Modules/tools'
|
||||
import { ISigninOptions } from 'model'
|
||||
@@ -16,7 +17,7 @@ import { useRouter } from 'vue-router'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CSignIn',
|
||||
components: { Logo },
|
||||
components: { Logo, CCheckAppRunning },
|
||||
props: {
|
||||
showregbutt: {
|
||||
type: Boolean,
|
||||
@@ -31,6 +32,8 @@ export default defineComponent({
|
||||
const $router = useRouter()
|
||||
const globalStore = useGlobalStore()
|
||||
|
||||
const enablePwa = computed(() => globalStore.site.confpages.enablePwa)
|
||||
|
||||
const refUsername = ref(<any>null)
|
||||
const refPassword = ref(null)
|
||||
|
||||
@@ -166,6 +169,7 @@ export default defineComponent({
|
||||
site,
|
||||
showPassword,
|
||||
typePassword,
|
||||
enablePwa,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user