mirror of https://github.com/sveltejs/svelte
parent
e34e5ee9da
commit
446a907187
@ -0,0 +1,15 @@
|
|||||||
|
[{
|
||||||
|
"code": "invalid-binding",
|
||||||
|
"message": "'this' is not a valid binding. Foreign elements only support bind:this",
|
||||||
|
"pos": 81,
|
||||||
|
"start": {
|
||||||
|
"line": 6,
|
||||||
|
"column": 7,
|
||||||
|
"character": 81
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 6,
|
||||||
|
"column": 27,
|
||||||
|
"character": 101
|
||||||
|
}
|
||||||
|
}]
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
<svelte:options namespace="foreign" />
|
||||||
|
<script>
|
||||||
|
let whatever;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<input bind:this={whatever} />
|
||||||
Loading…
Reference in new issue