import { defineComponent, ref, watch } from 'vue' import useLayoutStore from '../useLayoutStore' import { OhVueIcon, addIcons } from 'oh-vue-icons' import { MdVideogameassetTwotone, MdWorkhistoryTwotone, MdStarsTwotone } from 'oh-vue-icons/icons' import useSettingsStore from '@/settings/useSettingsStore' import clsx from 'clsx' addIcons(MdVideogameassetTwotone, MdWorkhistoryTwotone, MdStarsTwotone) export default defineComponent(() => { const hover = ref(false) const settings = useSettingsStore() const selected = ref<0 | 1 | 2>(0) const layout = useLayoutStore() watch( () => layout.state.current, (val) => { selected.value = val }, { immediate: true } ) return () => (