mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-07-17 23:20:07 +00:00
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 };
|