Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

docs: link demos to playground (beta) #4702

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
May 20, 2025
Merged
Prev Previous commit
Merge remote-tracking branch 'origin/main' into docs/link-to-playground
# Conflicts:
#	packages/integrations/useDrauu/demo.client.vue
#	packages/integrations/useIDBKeyval/demo.client.vue
#	pnpm-workspace.yaml
  • Loading branch information
OrbisK committed May 14, 2025
commit f0978e054e9b746d8c2e90e18053f828fd360a1e
2 changes: 1 addition & 1 deletion 2 packages/integrations/useDrauu/demo.client.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { toRefs } from '@vueuse/core'
import { useDrauu } from '@vueuse/integrations'
import { toRefs } from '@vueuse/shared'
import { ref as deepRef } from 'vue'
import Scrubber from '../../core/useMediaControls/components/Scrubber.vue'

Expand Down
15 changes: 14 additions & 1 deletion 15 packages/integrations/useIDBKeyval/demo.client.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
<script setup lang="ts">
import { stringify } from '@vueuse/docs-utils'
import { useIDBKeyval } from '@vueuse/integrations'
import { reactify } from '@vueuse/shared'
import YAML from 'yaml'

const stringify = reactify(
(input: any) => YAML.stringify(input, (k, v) => {
if (typeof v === 'function') {
return undefined
}
return v
}, {
singleQuote: true,
flowCollectionPadding: false,
}),
)

const KEY = 'vue-use-idb-keyval'

Expand Down
4 changes: 2 additions & 2 deletions 4 pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ catalogs:
vite: ^6.3.5
vite-plugin-inspect: ^11.0.1
vue: ^3.5.13
vue-tsc: ^2.2.8
vue-tsc: ^2.2.10
docs:
'@shikijs/vitepress-twoslash': ^3.4.0
'@vite-pwa/vitepress': ^1.0.0
Expand Down Expand Up @@ -76,7 +76,7 @@ catalogs:
rxjs: ^6.6.7
sortablejs: ^1.15.6
universal-cookie: ^7.2.2
vue-router: ^4.5.0
vue-router: ^4.5.1
test:
'@arethetypeswrong/cli': ^0.18.1
'@vitest/browser': ^3.1.3
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.