mirror of https://github.com/sveltejs/svelte
7 lines
75 B
7 lines
75 B
8 years ago
|
<script>
|
||
|
export default {
|
||
|
computed: {
|
||
|
b: a => a + 1
|
||
|
}
|
||
|
};
|
||
|
</script>
|