@data-fair/lib-vuetify 1.9.0 → 1.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/personal-menu.vue +0 -2
- package/personal-menu.vue.js +0 -2
package/package.json
CHANGED
package/personal-menu.vue
CHANGED
|
@@ -202,11 +202,9 @@ en:
|
|
|
202
202
|
import { computed, toRefs } from 'vue'
|
|
203
203
|
import { useI18n } from 'vue-i18n'
|
|
204
204
|
import { useSession } from '@data-fair/lib-vue/session.js'
|
|
205
|
-
import { useTheme } from 'vuetify'
|
|
206
205
|
import UserAvatar from './user-avatar.vue'
|
|
207
206
|
import { mdiAlert, mdiShieldAlert, mdiLogout, mdiAccountSwitchOutline } from '@mdi/js'
|
|
208
207
|
|
|
209
|
-
const theme = useTheme()
|
|
210
208
|
const session = useSession()
|
|
211
209
|
|
|
212
210
|
const { t } = useI18n({ useScope: 'local' })
|
package/personal-menu.vue.js
CHANGED
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
import { computed, toRefs } from 'vue';
|
|
3
3
|
import { useI18n } from 'vue-i18n';
|
|
4
4
|
import { useSession } from '@data-fair/lib-vue/session.js';
|
|
5
|
-
import { useTheme } from 'vuetify';
|
|
6
5
|
import UserAvatar from './user-avatar.vue';
|
|
7
6
|
import { mdiAlert, mdiShieldAlert, mdiLogout, mdiAccountSwitchOutline } from '@mdi/js';
|
|
8
7
|
const { defineProps, defineSlots, defineEmits, defineExpose, defineModel, defineOptions, withDefaults, } = await import('vue');
|
|
9
|
-
const theme = useTheme();
|
|
10
8
|
const session = useSession();
|
|
11
9
|
const { t } = useI18n({ useScope: 'local' });
|
|
12
10
|
const { user, account } = toRefs(session.state);
|