mirror of https://github.com/sveltejs/svelte
parent
4b8674fe02
commit
35ab21df93
@ -0,0 +1,5 @@
|
||||
---
|
||||
'svelte': patch
|
||||
---
|
||||
|
||||
fix: don't add imports to hoisted event parameters
|
@ -0,0 +1,11 @@
|
||||
<script>
|
||||
import { num } from './state.svelte.js';
|
||||
let { foo } = $props();
|
||||
|
||||
function onclick() {
|
||||
foo();
|
||||
console.log(num);
|
||||
}
|
||||
</script>
|
||||
|
||||
<button {onclick}>click</button>
|
@ -0,0 +1,14 @@
|
||||
import { flushSync } from 'svelte';
|
||||
import { test } from '../../test';
|
||||
|
||||
export default test({
|
||||
mode: ['client'],
|
||||
test({ assert, logs, target }) {
|
||||
const btn = target.querySelector('button');
|
||||
|
||||
btn?.click();
|
||||
flushSync();
|
||||
|
||||
assert.deepEqual(logs, [1, 1]);
|
||||
}
|
||||
});
|
@ -0,0 +1,11 @@
|
||||
<script>
|
||||
import { num, increment } from './state.svelte.js';
|
||||
import Component from './Component.svelte';
|
||||
|
||||
function foo() {
|
||||
increment();
|
||||
console.log(num);
|
||||
}
|
||||
</script>
|
||||
|
||||
<Component {foo} />
|
@ -0,0 +1,5 @@
|
||||
export let num = 0;
|
||||
|
||||
export function increment() {
|
||||
num += 1;
|
||||
}
|
Loading…
Reference in new issue