mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
b11e9c0e51
- [ ] babel-eslint https://github.com/babel/babel-eslint/issues/664 - [x] eslint-config-standard-jsx https://github.com/standard/eslint-config-standard-jsx/issues/32 - [x] eslint-config-standard to be stable release https://github.com/standard/eslint-config-standard/issues/123 - [x] eslint-plugin-html - [x] eslint-plugin-import - [x] eslint-plugin-jest - [x] eslint-plugin-node - [x] eslint-plugin-promise - [x] eslint-plugin-standard https://github.com/standard/eslint-plugin-standard/issues/29 - [x] eslint-plugin-vue https://github.com/vuejs/eslint-plugin-vue/pull/504 - [x] eslint-plugin-react https://github.com/yannickcr/eslint-plugin-react/releases/tag/v7.10.0
101 lines
2.3 KiB
Vue
101 lines
2.3 KiB
Vue
<template>
|
|
<v-app dark>
|
|
<v-navigation-drawer
|
|
v-model="drawer"
|
|
:mini-variant="miniVariant"
|
|
:clipped="clipped"
|
|
fixed
|
|
app
|
|
>
|
|
<v-list>
|
|
<v-list-tile
|
|
v-for="(item, i) in items"
|
|
:key="i"
|
|
:to="item.to"
|
|
router
|
|
exact
|
|
>
|
|
<v-list-tile-action>
|
|
<v-icon>{{ item.icon }}</v-icon>
|
|
</v-list-tile-action>
|
|
<v-list-tile-content>
|
|
<v-list-tile-title v-text="item.title" />
|
|
</v-list-tile-content>
|
|
</v-list-tile>
|
|
</v-list>
|
|
</v-navigation-drawer>
|
|
<v-toolbar :clipped-left="clipped" fixed app>
|
|
<v-toolbar-side-icon @click="drawer = !drawer" />
|
|
<v-btn
|
|
icon
|
|
@click.stop="miniVariant = !miniVariant"
|
|
>
|
|
<v-icon>{{ miniVariant ? 'chevron_right' : 'chevron_left' }}</v-icon>
|
|
</v-btn>
|
|
<v-btn
|
|
icon
|
|
@click.stop="clipped = !clipped"
|
|
>
|
|
<v-icon>web</v-icon>
|
|
</v-btn>
|
|
<v-btn
|
|
icon
|
|
@click.stop="fixed = !fixed"
|
|
>
|
|
<v-icon>remove</v-icon>
|
|
</v-btn>
|
|
<v-toolbar-title v-text="title" />
|
|
<v-spacer />
|
|
<v-btn
|
|
icon
|
|
@click.stop="rightDrawer = !rightDrawer"
|
|
>
|
|
<v-icon>menu</v-icon>
|
|
</v-btn>
|
|
</v-toolbar>
|
|
<v-content>
|
|
<v-container>
|
|
<nuxt />
|
|
</v-container>
|
|
</v-content>
|
|
<v-navigation-drawer
|
|
v-model="rightDrawer"
|
|
:right="right"
|
|
temporary
|
|
fixed
|
|
>
|
|
<v-list>
|
|
<v-list-tile @click.native="right = !right">
|
|
<v-list-tile-action>
|
|
<v-icon light>compare_arrows</v-icon>
|
|
</v-list-tile-action>
|
|
<v-list-tile-title>Switch drawer (click me)</v-list-tile-title>
|
|
</v-list-tile>
|
|
</v-list>
|
|
</v-navigation-drawer>
|
|
<v-footer :fixed="fixed" app>
|
|
<span>© 2017</span>
|
|
</v-footer>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
clipped: false,
|
|
drawer: true,
|
|
fixed: false,
|
|
items: [
|
|
{ icon: 'apps', title: 'Welcome', to: '/' },
|
|
{ icon: 'bubble_chart', title: 'Inspire', to: '/inspire' }
|
|
],
|
|
miniVariant: false,
|
|
right: true,
|
|
rightDrawer: false,
|
|
title: 'Vuetify.js'
|
|
}
|
|
}
|
|
}
|
|
</script>
|