Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
25 lines (23 sloc)
571 Bytes
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-layout column justify-center align-center> | |
<v-flex xs12 sm8 md6> | |
<div class="text-xs-center"> | |
<logo/> | |
<vuetify-logo/> | |
<links-component sample-prop="Prop from main page"></links-component> | |
</div> | |
</v-flex> | |
</v-layout> | |
</template> | |
<script> | |
import Logo from '~/components/Logo.vue' | |
import VuetifyLogo from '~/components/VuetifyLogo.vue' | |
import LinksComponent from "~/components/LinksComponent"; | |
export default { | |
components: { | |
LinksComponent, | |
Logo, | |
VuetifyLogo | |
} | |
} | |
</script> |