mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
feat: move cb functions to methods
This commit is contained in:
parent
8565df063a
commit
b26d8f4cb2
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user