mirror of https://github.com/sveltejs/svelte
add test for #2127
parent
8c044d5572
commit
d15acd89cc
@ -0,0 +1,11 @@
|
|||||||
|
import { writable } from '../../../../store.js';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
b: writable(42)
|
||||||
|
},
|
||||||
|
|
||||||
|
html: `
|
||||||
|
42
|
||||||
|
`
|
||||||
|
};
|
@ -0,0 +1,7 @@
|
|||||||
|
<script>
|
||||||
|
export let a;
|
||||||
|
export let b;
|
||||||
|
export let c;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{$b}
|
Loading…
Reference in new issue