2FAuth/resources/js/components/App.vue

31 lines
835 B
Vue
Raw Normal View History

2019-05-28 17:29:15 +02:00
<template>
<div>
2020-10-08 15:38:36 +02:00
<kicker v-if="kickInactiveUser"></kicker>
<div v-if="$root.appSettings.isDemoApp" class="demo has-background-warning has-text-centered is-size-7-mobile">
{{ $t('commons.demo_do_not_post_sensitive_data') }}
</div>
<notifications width="100%" position="top" :duration="4000" :speed="0" :max="1" classes="notification" />
<main class="main-section">
<router-view></router-view>
</main>
</div>
2019-05-28 17:29:15 +02:00
</template>
<script>
export default {
name: 'App',
2020-01-07 11:46:18 +01:00
2019-05-28 17:29:15 +02:00
data(){
return {
2020-01-06 21:05:03 +01:00
}
2020-10-08 15:38:36 +02:00
},
computed: {
kickInactiveUser: function () {
return parseInt(this.$root.appSettings.kickUserAfter) > 0 && this.$route.meta.requiresAuth
}
2019-05-28 17:29:15 +02:00
}
}
</script>