swingmusic/src/stores/content-width.ts
geoffrey45 a6819a01d6 add hidden shortcut to clear localStorage
-
click the "general" button in the settings page 3 times
-
2022-09-11 04:04:42 +03:00

11 lines
212 B
TypeScript

import { computed } from "vue";
import { ref } from "@vue/reactivity";
const content_width = ref(0);
const isSmall = computed(() => {
return content_width.value < 700;
});
export { content_width, isSmall };