2019-05-28 17:29:15 +02:00
|
|
|
<template>
|
2020-03-18 15:04:34 +01:00
|
|
|
<div>
|
2020-10-08 15:38:36 +02:00
|
|
|
<kicker v-if="kickInactiveUser"></kicker>
|
2022-05-10 08:57:45 +02:00
|
|
|
<div v-if="this.$root.isDemoApp" class="demo has-background-warning has-text-centered is-size-7-mobile">
|
2020-03-18 15:04:34 +01:00
|
|
|
{{ $t('commons.demo_do_not_post_sensitive_data') }}
|
|
|
|
</div>
|
2022-07-07 16:39:57 +02:00
|
|
|
<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>
|
2022-10-12 11:30:20 +02:00
|
|
|
<notifications id="vueNotification" role="alert" width="100%" position="top" :duration="4000" :speed="0" :max="1" classes="notification is-radiusless" />
|
2020-03-18 15:04:34 +01:00
|
|
|
<main class="main-section">
|
|
|
|
<router-view></router-view>
|
|
|
|
</main>
|
|
|
|
</div>
|
2019-05-28 17:29:15 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
2019-06-24 00:29:14 +02:00
|
|
|
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>
|