mirror of https://github.com/sveltejs/svelte
parent
f75a781a64
commit
d5638844e7
@ -0,0 +1,5 @@
|
||||
---
|
||||
'svelte': patch
|
||||
---
|
||||
|
||||
feat: add support for bind getters/setters
|
@ -0,0 +1,11 @@
|
||||
<script>
|
||||
let div = $state();
|
||||
|
||||
$effect(() => {
|
||||
console.log(div?.textContent);
|
||||
})
|
||||
|
||||
export const someData = '123';
|
||||
</script>
|
||||
|
||||
<div bind:this={() => div, v => div = v}>123</div>
|
@ -0,0 +1,9 @@
|
||||
import { test } from '../../test';
|
||||
|
||||
export default test({
|
||||
async test({ assert, target, logs }) {
|
||||
assert.htmlEqual(target.innerHTML, `<div>123</div>`);
|
||||
|
||||
assert.deepEqual(logs, ['123', '123']);
|
||||
}
|
||||
});
|
@ -0,0 +1,11 @@
|
||||
<script>
|
||||
import Child from './Child.svelte';
|
||||
|
||||
let child = $state();
|
||||
|
||||
$effect(() => {
|
||||
console.log(child.someData);
|
||||
});
|
||||
</script>
|
||||
|
||||
<Child bind:this={() => child, v => child = v} />
|
@ -0,0 +1,12 @@
|
||||
<script>
|
||||
let { a = $bindable() } = $props();
|
||||
</script>
|
||||
|
||||
<input
|
||||
type="value"
|
||||
bind:value={() => a,
|
||||
(v) => {
|
||||
console.log('b', v);
|
||||
a = v;
|
||||
}}
|
||||
/>
|
@ -0,0 +1,20 @@
|
||||
import { flushSync } from 'svelte';
|
||||
import { test } from '../../test';
|
||||
import { assert_ok } from '../../../suite';
|
||||
|
||||
export default test({
|
||||
async test({ assert, target, logs }) {
|
||||
const input = target.querySelector('input');
|
||||
|
||||
assert_ok(input);
|
||||
|
||||
input.value = '2';
|
||||
input.dispatchEvent(new window.Event('input'));
|
||||
|
||||
flushSync();
|
||||
|
||||
assert.htmlEqual(target.innerHTML, `<button>a: 2</button><input type="value">`);
|
||||
|
||||
assert.deepEqual(logs, ['b', '2', 'a', '2']);
|
||||
}
|
||||
});
|
@ -0,0 +1,16 @@
|
||||
<script>
|
||||
import Child from './Child.svelte';
|
||||
|
||||
let a = $state(0);
|
||||
</script>
|
||||
|
||||
<button onclick={() => a++}>a: {a}</button>
|
||||
|
||||
<Child
|
||||
bind:a={() => a,
|
||||
(v) => {
|
||||
console.log('a', v);
|
||||
a = v;
|
||||
}}
|
||||
/>
|
||||
|
Loading…
Reference in new issue