2019-05-28 17:29:15 +02:00
|
|
|
<template>
|
2020-03-18 15:04:34 +01:00
|
|
|
<div>
|
2020-03-23 17:25:53 +01:00
|
|
|
<div v-if="$root.appSettings.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>
|
|
|
|
<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
|
|
|
}
|
2019-05-28 17:29:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|