aboutsummaryrefslogtreecommitdiff
path: root/components/Navbar.vue
blob: 725a66612d402c1fcbc4bf3e889bdd73d1877a04 (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
27
28
<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>