mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
a6819a01d6
- click the "general" button in the settings page 3 times -
11 lines
212 B
TypeScript
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 };
|