oncreate async tests (function, arrow, arrow block)

pull/7738/head
Johnny Hauser 9 years ago
parent 7685f70a95
commit ef0ad5f5f5

@ -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