mirror of https://github.com/sveltejs/svelte
Merge pull request #2172 from jches/gh/2165
Fix code generation for non-exported vars after an exportpull/2188/head
commit
4090925a8e
@ -0,0 +1,9 @@
|
||||
export default {
|
||||
props: {
|
||||
a: 42
|
||||
},
|
||||
|
||||
html: `
|
||||
42
|
||||
`
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
<script>
|
||||
let a, b, c, d;
|
||||
|
||||
export { a, c }
|
||||
</script>
|
||||
|
||||
{a}
|
Loading…
Reference in new issue