2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-16 09:10:33 +03:00
This commit is contained in:
Jeff Sagal
2022-07-26 22:20:24 -07:00
parent 6d59e6fd02
commit f602913216
23 changed files with 189 additions and 184 deletions
+5 -5
View File
@@ -1,11 +1,11 @@
<script setup lang="ts">
import { NuxtLink } from "#components";
import ColorThemeSwitcher from "~/components/ThemeSwitcher.vue";
import { useWindowScroll } from "@vueuse/core";
import { NuxtLink } from '#components'
import ColorThemeSwitcher from '~/components/ThemeSwitcher.vue'
import { useWindowScroll } from '@vueuse/core'
const { y } = useWindowScroll();
const { y } = useWindowScroll()
const isScrolled = computed(() => y.value !== 0);
const isScrolled = computed(() => y.value !== 0)
</script>
<template>