mirror of
https://github.com/kevin-DL/build-gmail-clone-with-vue-3.git
synced 2026-01-23 15:41:33 +00:00
Button order that makes more sense
This commit is contained in:
@@ -1,13 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<button @click="selectScreen('MailScreenArchived')"
|
|
||||||
:disabled="screenName == 'MailScreenArchived'">
|
|
||||||
Archived View
|
|
||||||
</button>
|
|
||||||
<button @click="selectScreen('MailScreenInbox');"
|
<button @click="selectScreen('MailScreenInbox');"
|
||||||
:disabled="screenName == 'MailScreenInbox'">
|
:disabled="screenName == 'MailScreenInbox'">
|
||||||
Inbox View
|
Inbox View
|
||||||
</button>
|
</button>
|
||||||
|
<button @click="selectScreen('MailScreenArchived')"
|
||||||
|
:disabled="screenName == 'MailScreenArchived'">
|
||||||
|
Archived View
|
||||||
|
</button>
|
||||||
|
|
||||||
<suspense>
|
<suspense>
|
||||||
<template #default>
|
<template #default>
|
||||||
|
|||||||
Reference in New Issue
Block a user