This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
node-fftcg/frontend/src/App.vue

37 lines
770 B
Vue
Raw Normal View History

2019-02-22 19:23:42 +00:00
<template>
2019-02-22 20:10:17 +00:00
<v-app>
<v-toolbar app>
<v-toolbar-title class="headline text-uppercase">
<span>Vuetify</span>
<span class="font-weight-light">MATERIAL DESIGN</span>
</v-toolbar-title>
<v-spacer></v-spacer>
<v-btn flat :to="{ path: '/' }">Home</v-btn>
<v-btn flat :to="{ path: '/about' }">About</v-btn>
<v-btn
flat
href="https://github.com/vuetifyjs/vuetify/releases/latest"
target="_blank"
>
<span class="mr-2">Latest Release</span>
<v-icon>open_in_new</v-icon>
</v-btn>
</v-toolbar>
2019-02-22 19:23:42 +00:00
2019-02-22 20:10:17 +00:00
<v-content>
<router-view />
</v-content>
</v-app>
</template>
2019-02-22 19:23:42 +00:00
2019-02-22 20:10:17 +00:00
<script>
export default {
name: 'App',
data() {
return {
//
}
}
2019-02-22 19:23:42 +00:00
}
2019-02-22 20:10:17 +00:00
</script>