Homepage-imsyy/src/views/Main/Left.vue
2023-01-15 13:22:30 +08:00

27 lines
544 B
Vue

<template>
<div :class="store.mobileOpenState ? 'left hidden' : 'left'">
<Message />
<SocialLinks />
</div>
</template>
<script setup>
import { mainStore } from "@/store";
import Message from "@/components/Message/index.vue";
import SocialLinks from "@/components/SocialLinks/index.vue";
const store = mainStore();
</script>
<style lang="scss" scoped>
.left {
flex: 1 0 0%;
margin-right: 10px;
transform: translateY(20px);
&.hidden {
display: none;
}
@media (max-width: 720px) {
margin-right: 0;
}
}
</style>