Created
April 13, 2017 11:40
-
-
Save mstaack/b6bc319f10cad4d27fb63529307e2915 to your computer and use it in GitHub Desktop.
quasar nested linkstoolbar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<q-drawer-link icon="content_paste" to="/app" exact> | |
Dashboard | |
</q-drawer-link> | |
<q-drawer-link icon="assignment" to="/app/registrations"> | |
Registrations | |
</q-drawer-link> | |
<q-collapsible menu icon="event" label="Event" opened> | |
<q-drawer-link to="/app/event"> | |
Data | |
</q-drawer-link> | |
<q-collapsible menu label="Competitions" opened> | |
<div style="overflow: auto; max-height: 400px"> | |
<q-drawer-link | |
v-for="competition in app.state.competitions" | |
:key="competition" | |
:to="`/app/competitions/${competition.id}`" | |
exact | |
> | |
{{ competition.name }} | |
</q-drawer-link> | |
</div> | |
</q-collapsible> | |
<q-drawer-link to="/app/startnumbers"> | |
Start Numbers | |
</q-drawer-link> | |
</q-collapsible> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment