aboutsummaryrefslogtreecommitdiff
path: root/components/Navbar.vue
blob: 49d9629c38aae4eed924e71c0dbb2e3eb4f8a207 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<template>
        <v-card>
            <v-toolbar dark>
                <v-toolbar-title>Andrew Lee</v-toolbar-title>
                <v-spacer/>
                <v-btn to="/" text>
                    Home
                </v-btn>
                <v-btn to="/blog" text>
                    Blog
                </v-btn>
                <v-btn to="/projects" text>
                    Projects
                </v-btn>
            </v-toolbar>
        </v-card>
</template>

<script>
export default {
  name: 'Navbar'
}
</script>

<style scoped>
</style>