aa2938cb34
Genuinely type composable any usages (useStepper/useStorage/useForm/ createEventHook/useSorted/etc.) as proper generics/unknown; keep idiomatic any-function and overload-impl signatures with comments; skipped test -> .todo.
86 lines
2.5 KiB
Vue
86 lines
2.5 KiB
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue';
|
|
import { toReactive } from './index';
|
|
|
|
interface Profile {
|
|
name: string;
|
|
role: string;
|
|
level: number;
|
|
}
|
|
|
|
// A ref holding an object, exposed as a reactive proxy. Writes to the proxy
|
|
// flow straight through to source.value, and reads survive reassignment.
|
|
const source = ref<Profile>({ name: 'Ada Lovelace', role: 'Engineer', level: 3 });
|
|
const profile = toReactive(source);
|
|
|
|
const presets: Profile[] = [
|
|
{ name: 'Ada Lovelace', role: 'Engineer', level: 3 },
|
|
{ name: 'Alan Turing', role: 'Researcher', level: 5 },
|
|
{ name: 'Grace Hopper', role: 'Architect', level: 8 },
|
|
];
|
|
|
|
// Reassign the whole underlying ref — the proxy keeps pointing at fresh data.
|
|
function loadPreset(p: Profile) {
|
|
source.value = { ...p };
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="demo-stack max-w-sm">
|
|
<div class="demo-card p-4 flex flex-col gap-3">
|
|
<label class="flex flex-col gap-1.5">
|
|
<span class="demo-label">Name</span>
|
|
<input
|
|
v-model="profile.name"
|
|
type="text"
|
|
class="demo-input"
|
|
>
|
|
</label>
|
|
<label class="flex flex-col gap-1.5">
|
|
<span class="demo-label">Role</span>
|
|
<input
|
|
v-model="profile.role"
|
|
type="text"
|
|
class="demo-input"
|
|
>
|
|
</label>
|
|
<label class="flex flex-col gap-1.5">
|
|
<span class="demo-label">
|
|
Level: {{ profile.level }}
|
|
</span>
|
|
<input
|
|
v-model.number="profile.level"
|
|
type="range"
|
|
min="1"
|
|
max="10"
|
|
step="1"
|
|
class="w-full accent-accent cursor-pointer"
|
|
>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-1.5">
|
|
<span class="demo-label">source.value (the backing ref)</span>
|
|
<pre class="rounded-lg border border-border bg-bg-inset p-3 font-mono text-xs text-fg overflow-x-auto">{{ JSON.stringify(source, null, 2) }}</pre>
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-1.5">
|
|
<span class="demo-label">Reassign the whole ref</span>
|
|
<div class="flex flex-wrap gap-2">
|
|
<button
|
|
v-for="preset in presets"
|
|
:key="preset.name"
|
|
type="button"
|
|
class="demo-btn"
|
|
@click="loadPreset(preset)"
|
|
>
|
|
{{ preset.name.split(' ')[0] }}
|
|
</button>
|
|
</div>
|
|
<p class="text-xs text-fg-subtle">
|
|
The proxy survives reassignment — fields above update without re-binding.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</template>
|