Notifiche - Tutti - non letti
This commit is contained in:
0
src/views/user/usernotifs/usernotifs.scss
Executable file
0
src/views/user/usernotifs/usernotifs.scss
Executable file
30
src/views/user/usernotifs/usernotifs.ts
Executable file
30
src/views/user/usernotifs/usernotifs.ts
Executable file
@@ -0,0 +1,30 @@
|
||||
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import { useI18n } from '@/boot/i18n'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { CMyCardPopup } from '@/components/CMyCardPopup'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CNotifSettings } from '@/components/CNotifSettings'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
import { tools } from '@store/Modules/tools'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'usernotifs',
|
||||
components: { CMyCardPopup, CNotifSettings, CMyPage },
|
||||
props: {},
|
||||
setup() {
|
||||
const userStore = useUserStore()
|
||||
const $route = useRoute()
|
||||
const $q = useQuasar()
|
||||
const { t } = useI18n()
|
||||
|
||||
return {
|
||||
t,
|
||||
toolsext,
|
||||
tools,
|
||||
shared_consts,
|
||||
}
|
||||
}
|
||||
})
|
||||
21
src/views/user/usernotifs/usernotifs.vue
Executable file
21
src/views/user/usernotifs/usernotifs.vue
Executable file
@@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<CMyPage :title="$t('pages.notifs')"
|
||||
imgbackground="images/calendario_eventi.jpg"
|
||||
sizes="max-height: 120px" styleadd="bottom: -20px !important;">
|
||||
|
||||
|
||||
<CNotifSettings>
|
||||
|
||||
</CNotifSettings>
|
||||
<br>
|
||||
|
||||
</CMyPage>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./usernotifs.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './usernotifs.scss';
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user