src/App.vue
This file contains 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
<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>© 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