refactor: clean imports

This commit is contained in:
Corentin Thomasset 2022-04-16 20:59:44 +02:00
parent d066319b45
commit 724e142222
No known key found for this signature in database
GPG key ID: DBD997E935996158
4 changed files with 5 additions and 14 deletions

View file

@ -27,8 +27,7 @@
<script setup lang="ts">
import { useStyleStore } from '@/stores/style.store';
import { toRefs } from 'vue';
import { computed } from 'vue';
import { toRefs, computed } from 'vue';
const styleStore = useStyleStore()
const { isMenuCollapsed, isSmallScreen } = toRefs(styleStore)