November 2017
Beginner to intermediate
398 pages
8h 42m
English
We can now continue building the Login component, which will take care of signing in and signing up the user.
There are several data properties we need for the state of this component:
data () { return { mode: 'login', username: '', password: '', password2: '', email: '', } },
computed: { title () { switch (this.mode) { case 'login': return 'Login' ...Read now
Unlock full access