Skip to content

Commit

Permalink
Delta-97 Freedom.tm > Partner Dashboard > Implement login process (#9)
Browse files Browse the repository at this point in the history
Added import for QLayout for layout template to lessen the work of adding it manually after using
`quasar new layout <component name>`. Removed commented out components.

Approved by:
- @pandafox <[email protected]>
- @lordinel-fr <[email protected]>
  • Loading branch information
Ferriel Melarpis authored Feb 2, 2018
1 parent ec7cef7 commit 95f61de
Showing 1 changed file with 9 additions and 56 deletions.
65 changes: 9 additions & 56 deletions templates/layout.vue
Original file line number Diff line number Diff line change
@@ -1,68 +1,21 @@
<template>
<!-- Configure "view" prop for QLayout -->
<!-- For more info regarding usage, visit http://quasar-framework.org/components/layout.html -->
<q-layout>
<q-toolbar slot="header">
<!-- opens drawer below
<button class="hide-on-drawer-visible" @click="$refs.drawer.open()">
<i>menu</i>
</button>
-->
<q-toolbar-title>
Title
</q-toolbar-title>
</q-toolbar>

<!-- Navigation Tabs
<q-tabs slot="navigation">
<q-route-tab slot="title" icon="view_quilt" to="/layout/about" replace hide="icon" label="About" />
<q-route-tab slot="title" icon="view_day" to="/layout/toolbar" replace hide="icon" label="Toolbar" />
<q-route-tab slot="title" icon="view_day" to="/layout/tabs" replace label="Tabs" />
<q-route-tab slot="title" icon="input" to="/layout/drawer" replace label="Drawer" />
</q-tabs>
-->

<!-- Left Side Panel
<div slot="left">
<q-list no-border link inset-delimiter>
<q-list-header>Essential Links</q-list-header>
<q-item>
<q-item-side icon="school" />
<q-item-main label="Docs" sublabel="quasar-framework.org" />
</q-item>
<q-item>
<q-item-side icon="record_voice_over" />
<q-item-main label="Forum" sublabel="forum.quasar-framework.org" />
</q-item>
<q-item>
<q-item-side icon="chat" />
<q-item-main label="Gitter Channel" sublabel="Quasar Lobby" />
</q-item>
<q-item>
<q-item-side icon="rss feed" />
<q-item-main label="Twitter" sublabel="@quasarframework" />
</q-item>
</q-list>
</div>
-->

<!-- Right Side Panel
<div slot="right">
...
</div>
-->

<router-view/>

<!-- Footer
<q-toolbar slot="footer">
...
</q-toolbar>
-->
</q-layout>
</template>

<script>
import {
QLayout
} from 'quasar';
export default {
components: {
QLayout
},
data() {
return {};
}
Expand Down

0 comments on commit 95f61de

Please sign in to comment.