mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-26 18:25:09 +01:00
68e3a8d100
Update showSpinner function to accept the message to be displayed, defaults to 'loading' if none is provided.
42 lines
1.3 KiB
Vue
42 lines
1.3 KiB
Vue
<template>
|
|
<div>
|
|
<kicker v-if="kickInactiveUser"></kicker>
|
|
<div v-if="this.$root.isDemoApp" class="demo has-background-warning has-text-centered is-size-7-mobile">
|
|
{{ $t('commons.demo_do_not_post_sensitive_data') }}
|
|
</div>
|
|
<div v-if="this.$root.isTestingApp" class="demo has-background-warning has-text-centered is-size-7-mobile">
|
|
{{ $t('commons.testing_do_not_post_sensitive_data') }}
|
|
</div>
|
|
<!-- Loading spinner -->
|
|
<spinner :active="$root.spinner.active" :message="$root.spinner.message"/>
|
|
<notifications id="vueNotification" role="alert" width="100%" position="top" :duration="4000" :speed="0" :max="1" classes="notification is-radiusless" />
|
|
<main class="main-section">
|
|
<router-view></router-view>
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Spinner from "./Spinner.vue";
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
Spinner
|
|
},
|
|
|
|
data(){
|
|
return {
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
|
|
kickInactiveUser: function () {
|
|
return parseInt(this.$root.userPreferences.kickUserAfter) > 0 && this.$route.meta.requiresAuth
|
|
}
|
|
|
|
}
|
|
}
|
|
</script>
|