Files
newfreeplanet_OLD/src/components/CProfile/CProfile.ts
2021-09-16 21:08:02 +02:00

20 lines
452 B
TypeScript
Executable File

import { defineComponent } from 'vue'
import { useI18n } from '@/boot/i18n'
import { useUserStore } from '@store/UserStore'
import { useGlobalStore } from '../../store/globalStore'
import { useQuasar } from 'quasar'
export default defineComponent({
name: 'CProfile',
setup() {
const $q = useQuasar()
const { t } = useI18n()
const userStore = useUserStore()
const globalStore = useGlobalStore()
return {
t,
}
},
})