mirror of https://github.com/sveltejs/svelte
exclude current prop in computed properties using entire state #1544
parent
51c2cddd90
commit
345cf64446
@ -0,0 +1,25 @@
|
||||
export default {
|
||||
html: `
|
||||
<pre>{"wanted":2}</pre>
|
||||
`,
|
||||
|
||||
test(assert, component, target) {
|
||||
component.set({
|
||||
unwanted: 3,
|
||||
wanted: 4,
|
||||
});
|
||||
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<pre>{"wanted":4}</pre>
|
||||
`);
|
||||
|
||||
component.set({
|
||||
unwanted: 5,
|
||||
wanted: 6,
|
||||
});
|
||||
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<pre>{"wanted":6}</pre>
|
||||
`);
|
||||
},
|
||||
};
|
@ -0,0 +1,22 @@
|
||||
<pre>{JSON.stringify(props)}</pre>
|
||||
<script>
|
||||
export default {
|
||||
data: () => ({
|
||||
unwanted: 1,
|
||||
wanted: 2
|
||||
}),
|
||||
|
||||
helpers: {
|
||||
// prevent this being mixed in with data
|
||||
JSON
|
||||
},
|
||||
|
||||
computed: {
|
||||
props: (state) => {
|
||||
var result = Object.assign({}, state);
|
||||
delete result.unwanted;
|
||||
return result;
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in new issue