Skip to content

Instantly share code, notes, and snippets.

@mtermoul

mtermoul/App.vue Secret

Created April 3, 2019 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mtermoul/8a6df0c3f68a68b8197c73eaffd6644b to your computer and use it in GitHub Desktop.
Save mtermoul/8a6df0c3f68a68b8197c73eaffd6644b to your computer and use it in GitHub Desktop.
src/App.vue
<template>
<v-app>
<v-toolbar app color="green accent-4">
<v-icon>school</v-icon>
<v-toolbar-title v-text="title"></v-toolbar-title>
<v-spacer></v-spacer>
</v-toolbar>
<v-content>
<router-view/>
</v-content>
<v-footer :fixed="fixed" app color="green accent-4">
<span>&copy; 2017</span>
</v-footer>
</v-app>
</template>
<script>
export default {
name: 'App',
data () {
return {
fixed: false,
title: 'College Query'
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment