2017-12-02 03:47:55 +00:00
|
|
|
<template>
|
|
|
|
<div class="page-container md-layout-column">
|
|
|
|
<md-toolbar class="md-primary">
|
|
|
|
<md-button class="md-icon-button" @click="showNavigation = true">
|
|
|
|
<md-icon>menu</md-icon>
|
|
|
|
</md-button>
|
2018-11-24 18:49:19 +00:00
|
|
|
<span class="md-title">
|
|
|
|
Nuxt + Vue Material
|
|
|
|
</span>
|
2017-12-02 03:47:55 +00:00
|
|
|
|
|
|
|
<div class="md-toolbar-section-end">
|
2018-11-24 18:49:19 +00:00
|
|
|
<md-button @click="showSidepanel = true">
|
|
|
|
Favorites
|
|
|
|
</md-button>
|
2017-12-02 03:47:55 +00:00
|
|
|
</div>
|
|
|
|
</md-toolbar>
|
|
|
|
|
|
|
|
<md-drawer :md-active.sync="showNavigation">
|
|
|
|
<md-toolbar class="md-transparent" md-elevation="0">
|
2018-11-24 18:49:19 +00:00
|
|
|
<span class="md-title">
|
|
|
|
My App name
|
|
|
|
</span>
|
2017-12-02 03:47:55 +00:00
|
|
|
</md-toolbar>
|
|
|
|
|
|
|
|
<md-list>
|
|
|
|
<md-list-item>
|
|
|
|
<md-icon>move_to_inbox</md-icon>
|
2018-11-24 18:49:19 +00:00
|
|
|
<span class="md-list-item-text">
|
|
|
|
Inbox
|
|
|
|
</span>
|
2017-12-02 03:47:55 +00:00
|
|
|
</md-list-item>
|
|
|
|
|
|
|
|
<md-list-item>
|
|
|
|
<md-icon>send</md-icon>
|
2018-11-24 18:49:19 +00:00
|
|
|
<span class="md-list-item-text">
|
|
|
|
Sent Mail
|
|
|
|
</span>
|
2017-12-02 03:47:55 +00:00
|
|
|
</md-list-item>
|
|
|
|
|
|
|
|
<md-list-item>
|
|
|
|
<md-icon>delete</md-icon>
|
2018-11-24 18:49:19 +00:00
|
|
|
<span class="md-list-item-text">
|
|
|
|
Trash
|
|
|
|
</span>
|
2017-12-02 03:47:55 +00:00
|
|
|
</md-list-item>
|
|
|
|
|
|
|
|
<md-list-item>
|
|
|
|
<md-icon>error</md-icon>
|
2018-11-24 18:49:19 +00:00
|
|
|
<span class="md-list-item-text">
|
|
|
|
Spam
|
|
|
|
</span>
|
2017-12-02 03:47:55 +00:00
|
|
|
</md-list-item>
|
|
|
|
</md-list>
|
|
|
|
</md-drawer>
|
|
|
|
|
2018-07-12 12:03:50 +00:00
|
|
|
<md-drawer :md-active.sync="showSidepanel" class="md-right">
|
2017-12-02 03:47:55 +00:00
|
|
|
<md-toolbar class="md-transparent" md-elevation="0">
|
2018-11-24 18:49:19 +00:00
|
|
|
<span class="md-title">
|
|
|
|
Favorites
|
|
|
|
</span>
|
2017-12-02 03:47:55 +00:00
|
|
|
</md-toolbar>
|
|
|
|
|
|
|
|
<md-list>
|
|
|
|
<md-list-item>
|
2018-11-24 18:49:19 +00:00
|
|
|
<span class="md-list-item-text">
|
|
|
|
Abbey Christansen
|
|
|
|
</span>
|
2017-12-02 03:47:55 +00:00
|
|
|
|
|
|
|
<md-button class="md-icon-button md-list-action">
|
2018-11-24 18:49:19 +00:00
|
|
|
<md-icon class="md-primary">
|
|
|
|
chat_bubble
|
|
|
|
</md-icon>
|
2017-12-02 03:47:55 +00:00
|
|
|
</md-button>
|
|
|
|
</md-list-item>
|
|
|
|
|
|
|
|
<md-list-item>
|
2018-11-24 18:49:19 +00:00
|
|
|
<span class="md-list-item-text">
|
|
|
|
Alex Nelson
|
|
|
|
</span>
|
2017-12-02 03:47:55 +00:00
|
|
|
|
|
|
|
<md-button class="md-icon-button md-list-action">
|
2018-11-24 18:49:19 +00:00
|
|
|
<md-icon class="md-primary">
|
|
|
|
chat_bubble
|
|
|
|
</md-icon>
|
2017-12-02 03:47:55 +00:00
|
|
|
</md-button>
|
|
|
|
</md-list-item>
|
|
|
|
|
|
|
|
<md-list-item>
|
2018-11-24 18:49:19 +00:00
|
|
|
<span class="md-list-item-text">
|
|
|
|
Mary Johnson
|
|
|
|
</span>
|
2017-12-02 03:47:55 +00:00
|
|
|
|
|
|
|
<md-button class="md-icon-button md-list-action">
|
|
|
|
<md-icon>chat_bubble</md-icon>
|
|
|
|
</md-button>
|
|
|
|
</md-list-item>
|
|
|
|
</md-list>
|
|
|
|
</md-drawer>
|
|
|
|
|
|
|
|
<md-content>
|
|
|
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Error quibusdam, non molestias et! Earum magnam, similique, quo recusandae placeat dicta asperiores modi sint ea repudiandae maxime? Quae non explicabo, neque.
|
|
|
|
</md-content>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2017-12-03 12:54:12 +00:00
|
|
|
export default {
|
|
|
|
name: 'Sidenav',
|
|
|
|
data: () => ({
|
|
|
|
showNavigation: false,
|
|
|
|
showSidepanel: false
|
|
|
|
})
|
|
|
|
}
|
2017-12-02 03:47:55 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
2017-12-03 12:54:12 +00:00
|
|
|
.page-container {
|
|
|
|
min-height: 100vh;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
border: 1px solid rgba(#000, 0.12);
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-drawer {
|
|
|
|
width: 230px;
|
|
|
|
max-width: calc(100vw - 125px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-content {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
</style>
|