This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useUrlSearchParams as useVueUseUrlSearchParams } from '@vueuse/core' | |
const paramsInstances = new Map<string, ReturnType<typeof useVueUseUrlSearchParams>>() | |
export function useRouteQuery<T extends Record<string, any> = Record<string, any>>(key?: string) { | |
if (import.meta.server) { | |
return useRoute().query as T | |
} | |
const finalKey = key ?? window.location.pathname |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script lang="ts"> | |
const iframes = new Map<string, { iframe: HTMLIFrameElement, src: string }>() | |
</script> | |
<script lang="ts" setup> | |
import { useAttrs, ref, shallowRef, watchEffect, onMounted, onBeforeUnmount } from 'vue' | |
import { useElementBounding } from '@vueuse/core' | |
defineOptions({ | |
inheritAttrs: false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#tabbrowser-tabs { | |
visibility: collapse; | |
} | |
#navigator-toolbox { | |
display: flex; | |
flex-flow: row wrap; | |
} | |
#titlebar { | |
order: 1; | |
max-width: 44px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"settings": { | |
"nativeScrollbars": true, | |
"nativeScrollbarsThin": true, | |
"nativeScrollbarsLeft": false, | |
"selWinScreenshots": true, | |
"updateSidebarTitle": true, | |
"markWindow": false, | |
"markWindowPreface": "[Sidebery] ", | |
"ctxMenuNative": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#tabbrowser-tabs { | |
visibility: collapse; | |
} | |
#navigator-toolbox { | |
display: flex; | |
flex-flow: row wrap; | |
} | |
#titlebar { | |
order: 1; | |
max-width: 146px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=\s\(\) => import\([\s\n]*(\/\*.*?\*\/[\s\n]*)?'.*?\.vue'[\s\n]*\) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { updateLobby, subscribeToLobby } from './lobby' | |
// ... | |
updateLobby('some-id', { title: 'Foo' }) | |
subscribeToLobby('xxx-xxx-xxx') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Doesn't work with Vue 2 scoped slots nor Vue 3 slots in some cases --> | |
<template> | |
<div> | |
<div v-if="$slots.foo"> | |
<slot name="foo" title="Title" /> | |
</div> | |
</div> | |
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
import { ref, computed } from 'vue' | |
import gql from 'graphql-tag' | |
import { client } from './weather' | |
const document = gql`query getCityWeather ($name: String!) { | |
city: getCityByName (name: $name) { | |
id | |
name | |
country |
NewerOlder