mirror of https://github.com/sveltejs/svelte
Don't invalidate `this`. Fixes #2184
parent
5459b71276
commit
3ced3c1325
@ -0,0 +1,42 @@
|
|||||||
|
/* generated by Svelte vX.Y.Z */
|
||||||
|
import { SvelteComponent as SvelteComponent_1, addListener, createElement, detachNode, init, insert, noop, safe_not_equal } from "svelte/internal";
|
||||||
|
|
||||||
|
function create_fragment(ctx) {
|
||||||
|
var input, dispose;
|
||||||
|
|
||||||
|
return {
|
||||||
|
c() {
|
||||||
|
input = createElement("input");
|
||||||
|
dispose = addListener(input, "input", make_uppercase);
|
||||||
|
},
|
||||||
|
|
||||||
|
m(target, anchor) {
|
||||||
|
insert(target, input, anchor);
|
||||||
|
},
|
||||||
|
|
||||||
|
p: noop,
|
||||||
|
i: noop,
|
||||||
|
o: noop,
|
||||||
|
|
||||||
|
d(detach) {
|
||||||
|
if (detach) {
|
||||||
|
detachNode(input);
|
||||||
|
}
|
||||||
|
|
||||||
|
dispose();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function make_uppercase() {
|
||||||
|
this.value = this.value.toUpperCase();
|
||||||
|
}
|
||||||
|
|
||||||
|
class SvelteComponent extends SvelteComponent_1 {
|
||||||
|
constructor(options) {
|
||||||
|
super();
|
||||||
|
init(this, options, null, create_fragment, safe_not_equal);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default SvelteComponent;
|
@ -0,0 +1,6 @@
|
|||||||
|
<script>
|
||||||
|
function make_uppercase() {
|
||||||
|
this.value = this.value.toUpperCase();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<input on:input={make_uppercase}>
|
Loading…
Reference in new issue