aboutsummaryrefslogtreecommitdiff
path: root/components/Navbar.vue
blob: fd559db25fb351863e10e48b7953ba4e6f85f054 (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
29
30
31
32
33
34
35
36
37
38
<template>
    <div>
        <v-app-bar>
            <v-toolbar-title>Andrew Lee</v-toolbar-title>
            <v-spacer/>
            <v-toolbar-items>
            <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-items>
        </v-app-bar>
    </div>
</template>

<script>
export default {
  name: 'Navbar',
  data () {
    return {
      drawer: false,
      items: [
        { title: 'Home', link: '/', icon: 'home' },
        { title: 'Blog', link: 'store', icon: 'blog' },
        { title: 'Projects', link: 'cart', icon: 'projects' }
      ]
    }
  }
}
</script>

<style scoped>
</style>