mirror of https://github.com/sveltejs/svelte
28 lines
269 B
28 lines
269 B
8 years ago
|
<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>
|