You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/computed-values-function-de.../main.html

28 lines
271 B

<p>{x}</p>
<script>
let _x;
function getX () {
return _x;
}
export default {
data () {
return {
y: 1
};
},
computed: {
xGetter ({ y }) {
_x = y * 2;
return getX;
},
x ({ xGetter }) {
return xGetter();
}
}
};
</script>