Created
June 21, 2017 22:22
-
-
Save xordoquy/6fff641bcb2e7607d584515914cc1bb9 to your computer and use it in GitHub Desktop.
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
import Vue from 'vue' | |
import router from './router' | |
import store from './store' | |
import page from './components/Page' | |
import Vuetify from 'vuetify' | |
store.dispatch('urls') | |
new Vue({ | |
router, | |
store, | |
Vuetify, | |
page, | |
el: '#app', | |
data: { | |
clipped: false, | |
drawer: true, | |
fixed: false, | |
items: [ | |
{ icon: 'bubble_chart', title: 'Inspire' } | |
], | |
miniVariant: false, | |
right: true, | |
rightDrawer: false, | |
title: 'Vuetify.js' | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment