mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-30 00:46:29 +01:00
8 lines
93 B
HTML
8 lines
93 B
HTML
<script>
|
|
export default {
|
|
computed: {
|
|
a: x => x * 2,
|
|
b: x => x * 3
|
|
}
|
|
};
|
|
</script> |