index.vue 634 Bytes
Newer Older
Z's avatar
Z committed
1 2 3 4 5
<template>
  <el-tooltip
    effect="dark"
    :content="active ? '退出全屏' : '全屏'"
    placement="bottom">
6 7 8 9
    <!-- <el-button class="d2-mr btn-text can-hover" type="text" @click="toggle"> -->
      <!-- <d2-icon v-if="active" name="compress"/> -->
      <!-- <d2-icon v-else name="arrows-alt" style="font-size: 16px"/> -->
    <!-- </el-button>  -->
Z's avatar
Z committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
  </el-tooltip>
</template>

<script>
import { mapState, mapActions } from 'vuex'
export default {
  computed: {
    ...mapState('d2admin/fullscreen', [
      'active'
    ])
  },
  methods: {
    ...mapActions('d2admin/fullscreen', [
      'toggle'
    ])
  }
}
</script>