diff options
Diffstat (limited to 'apps/settings/src/main-apps-users-management.ts')
-rw-r--r-- | apps/settings/src/main-apps-users-management.ts | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/apps/settings/src/main-apps-users-management.ts b/apps/settings/src/main-apps-users-management.ts index c923406ce7f..f24562d3e82 100644 --- a/apps/settings/src/main-apps-users-management.ts +++ b/apps/settings/src/main-apps-users-management.ts @@ -4,9 +4,9 @@ */ import Vue from 'vue' -import VTooltip from 'v-tooltip' +import VTooltipPlugin from 'v-tooltip' import { sync } from 'vuex-router-sync' -import { translate as t, translatePlural as n } from '@nextcloud/l10n' +import { t, n } from '@nextcloud/l10n' import SettingsApp from './views/SettingsApp.vue' import router from './router/index.ts' @@ -14,19 +14,18 @@ import { useStore } from './store/index.js' import { getCSPNonce } from '@nextcloud/auth' import { PiniaVuePlugin, createPinia } from 'pinia' -Vue.use(VTooltip, { defaultHtml: false }) - -const store = useStore() -sync(store, router) - // CSP config for webpack dynamic chunk loading // eslint-disable-next-line camelcase __webpack_nonce__ = getCSPNonce() +const store = useStore() +sync(store, router) + // bind to window Vue.prototype.t = t Vue.prototype.n = n Vue.use(PiniaVuePlugin) +Vue.use(VTooltipPlugin, { defaultHtml: false }) const pinia = createPinia() |