Skip to content

Instantly share code, notes, and snippets.

View jjmontalban's full-sized avatar
🏠
Working from home

JJMontalban jjmontalban

🏠
Working from home
View GitHub Profile
@diogosouza
diogosouza / navigation.vue
Created April 5, 2019 01:24
Template for Navigation Drawer - Vuetify Example
<template>
<span>
<v-navigation-drawer app v-model="drawer">
<v-list>
<template v-for="(menu, i) in menus">
<v-list-tile :key="i">
<v-list-tile-content>
{{menu.value}}
</v-list-tile-content>
</v-list-tile>