mirror of https://github.com/sveltejs/svelte
Merge pull request #965 from sveltejs/gh-961
prevent boolean attributes breaking shapes inside estree-walkerpull/959/head
commit
3264b5160f
@ -0,0 +1 @@
|
||||
<a href={{href}}>link</a>
|
@ -0,0 +1,3 @@
|
||||
export default {
|
||||
html: `<a href='/cool'>link</a>`
|
||||
};
|
@ -0,0 +1,10 @@
|
||||
<Link x href="/cool"/>
|
||||
|
||||
<script>
|
||||
import Link from './Link.html';
|
||||
export default {
|
||||
components: {
|
||||
Link
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in new issue