Button added to create room page from login
This commit is contained in:
parent
0ed3550531
commit
b9119d6778
9 changed files with 37 additions and 9 deletions
|
|
@ -71,9 +71,18 @@
|
|||
block
|
||||
@click.stop="handleLogin"
|
||||
:loading="loading"
|
||||
class="filled-button mt-8"
|
||||
class="filled-button mt-4"
|
||||
>{{ $t("login.login") }}</v-btn
|
||||
>
|
||||
<div class="mt-2 overline">{{ $t("login.or") }}</div>
|
||||
<v-btn
|
||||
color="primary"
|
||||
depressed
|
||||
block
|
||||
@click.stop="handleCreateRoom"
|
||||
class="filled-button mt-2"
|
||||
>{{ $t("login.create_room") }}</v-btn
|
||||
>
|
||||
</v-form>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -185,6 +194,9 @@ export default {
|
|||
);
|
||||
}
|
||||
},
|
||||
handleCreateRoom() {
|
||||
this.$navigation.push({ name: "CreateRoom" });
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue