index.vue 802 Bytes
<template>
  <div class="setdata">
    <Dec :content="content" />
    <el-switch
      v-model="layoutSwitch"
      active-color="#13ce66"
      inactive-color="#ff4949"
      @change="switchChange"
    />
  </div>
</template>
<script>

import { getLogoLayout } from '@/utils/auth'
import Dec from '@/components/Dec'
export default {
  name: 'Setdata',
  components: {
    Dec
  },
  data() {
    return {
      content: '',
      layoutSwitch: getLogoLayout() === 'topBottom'
    }
  },
  methods: {
    switchChange() {
      if (this.layoutSwitch) {
        this.$store.commit('user/SET_LOGOLAYOUT', 'topBottom')
      } else {
        this.$store.commit('user/SET_LOGOLAYOUT', 'leftRight')
      }
      console.log(this.$store.state.user.logoLayout)
    }
  }
}
</script>
<style scoped>

</style>