svelte/test/runtime/samples/oncreate-async/main.html

8 lines
79 B

<script>
export default {
async oncreate() {
await 123
}
};
</script>