App.vue 472 B

123456789101112131415161718192021
  1. <template>
  2. <div>
  3. <div v-if="$root.appSettings.isDemoApp" class="demo has-background-warning has-text-centered is-size-7-mobile">
  4. {{ $t('commons.demo_do_not_post_sensitive_data') }}
  5. </div>
  6. <main class="main-section">
  7. <router-view></router-view>
  8. </main>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. name: 'App',
  14. data(){
  15. return {
  16. }
  17. }
  18. }
  19. </script>