FMHYedit/.vitepress/theme/components/ToggleStarred.vue

17 lines
290 B
Vue
Raw Normal View History

2023-11-12 22:12:57 +05:30
<script setup lang="ts">
2024-01-25 16:32:45 +00:00
import Switch from './Switch.vue'
2023-11-12 22:12:57 +05:30
2024-01-25 16:32:45 +00:00
const toggleStarred = () =>
document.documentElement.classList.toggle('starred-only')
2023-11-12 22:12:57 +05:30
</script>
<template>
<Switch @click="toggleStarred()" />
</template>
<style>
.starred-only li:not(.starred) {
display: none;
}
</style>