oncreate async tests (function, arrow, arrow block)

pull/907/head
Johnny Hauser 7 years ago
parent 1dad8f1936
commit 0997107e1d

@ -0,0 +1,7 @@
<script>
export default {
oncreate: async () => {
await 123
}
};
</script>

@ -0,0 +1,5 @@
<script>
export default {
oncreate: async () => await 123
};
</script>

@ -0,0 +1,7 @@
<script>
export default {
async oncreate() {
await 123
}
};
</script>
Loading…
Cancel
Save