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

21 lines
472 B
Vue
Raw Normal View History

2019-05-28 17:29:15 +02:00
<template>
<div>
<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>
<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
}
2019-05-28 17:29:15 +02:00
}
}
</script>