mirror of https://github.com/sveltejs/svelte
Improves the validator to fail if someone forgets to declare
dependent properties for computed state:
```
export default {
computed: {
bar: () => { return new Date().getTime(); }
}
};
```
pull/115/head
parent
5770048855
commit
65cdead991
@ -0,0 +1,8 @@
|
|||||||
|
[{
|
||||||
|
"message": "A computed value must depend on at least one property",
|
||||||
|
"pos": 49,
|
||||||
|
"loc": {
|
||||||
|
"line": 4,
|
||||||
|
"column": 8
|
||||||
|
}
|
||||||
|
}]
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
computed: {
|
||||||
|
foo: () => {}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
Loading…
Reference in new issue