Blame view

frontend/front/src/components/layouts/EmptyLayout.vue 416 Bytes
8ea9c133   陈威   初始化提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
  <div class="empty-layout">
    <ht-theme-bar class="display-none" />
    <router-view />
  </div>
</template>
<script>
  export default {
    name: 'EmptyLayout',
    created() {
      this.$store.dispatch('routes/setFullScreenState', true)
    },
  }
</script>
<style lang="scss" scoped>
  .empty-layout {
    height: 100vh;
    width: 100%;
    .display-none {
      display: none;
    }
  }
</style>