43 lines
1.0 KiB
TypeScript
Executable File
43 lines
1.0 KiB
TypeScript
Executable File
import { defineComponent, ref, computed, PropType, toRef } from 'vue'
|
|
import { useUserStore } from '@store/UserStore'
|
|
import { useRouter } from 'vue-router'
|
|
import { useGlobalStore } from '@store/globalStore'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { tools } from '@tools'
|
|
import { costanti } from '@store/Modules/costanti'
|
|
import { static_data } from '@/db/static_data'
|
|
import { CRegistration } from '@/components/CRegistration'
|
|
|
|
export default defineComponent({
|
|
name: 'CCheckIfIsLogged',
|
|
components: { CRegistration },
|
|
props: {
|
|
showalways: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: false,
|
|
},
|
|
},
|
|
setup(props, { emit }) {
|
|
|
|
const userStore = useUserStore()
|
|
const $router = useRouter()
|
|
const globalStore = useGlobalStore()
|
|
const { t } = useI18n()
|
|
|
|
const isLogged = computed(() => userStore.isLogged)
|
|
|
|
const site = ref(globalStore.site)
|
|
|
|
return {
|
|
userStore,
|
|
tools,
|
|
costanti,
|
|
static_data,
|
|
site,
|
|
isLogged,
|
|
t,
|
|
}
|
|
}
|
|
})
|