Files
newfreeplanet_OLD/src/components/CProfile/CProfile.ts

20 lines
452 B
TypeScript
Raw Normal View History

2021-09-16 21:08:02 +02:00
import { defineComponent } from 'vue'
import { useI18n } from '@/boot/i18n'
import { useUserStore } from '@store/UserStore'
import { useGlobalStore } from '../../store/globalStore'
import { useQuasar } from 'quasar'
2021-09-04 15:05:34 +02:00
2021-09-16 21:08:02 +02:00
export default defineComponent({
2021-09-04 15:05:34 +02:00
name: 'CProfile',
2021-09-16 21:08:02 +02:00
setup() {
const $q = useQuasar()
const { t } = useI18n()
const userStore = useUserStore()
const globalStore = useGlobalStore()
2021-09-04 15:05:34 +02:00
2021-09-16 21:08:02 +02:00
return {
t,
}
},
})