mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-25 16:39:13 +01:00
22 lines
586 B
Vue
22 lines
586 B
Vue
<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>
|
|
<notifications width="100%" position="top" :duration="4000" :speed="0" :max="1" classes="notification" />
|
|
<main class="main-section">
|
|
<router-view></router-view>
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App',
|
|
|
|
data(){
|
|
return {
|
|
}
|
|
}
|
|
}
|
|
</script> |