0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 01:11:24 +01:00
svelte/test/js/samples/deconflict-globals/input.html
2018-01-10 21:48:03 -05:00

11 lines
131 B
HTML

<script>
export default {
data: () => ({
foo: 'bar'
}),
oncreate() {
alert(JSON.stringify(data()));
}
};
</script>