feat: move cb functions to methods

This commit is contained in:
Ítalo Teixeira 2022-04-23 00:30:02 +02:00
parent 8565df063a
commit b26d8f4cb2

View File

@ -2,9 +2,9 @@
<article>
<my-header
:user="user"
@login="user = { name: 'Jane Doe' }"
@logout="user = null"
@createAccount="user = { name: 'Jane Doe' }"
@onLogin="onLogin"
@onLogout="onLogout"
@onCreateAccount="onCreateAccount"
/>
<section>
@ -72,5 +72,17 @@ export default {
user: null,
};
},
methods: {
onLogin() {
this.user = { name: 'Jane Doe' };
},
onLogout() {
this.user = null;
},
onCreateAccount() {
this.user = { name: 'Jane Doe' };
},
},
};
</script>