aboutsummaryrefslogtreecommitdiff
path: root/components/Footer.vue
blob: 8c6d144872f357124029423376fd1b709a67bf7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
    <div>
        <v-footer class="font-weight-medium" color="gray darken-3" dark>
            <v-col cols="12">
                <p class="text-center">&copy; Copyright 2018-{{ new Date().getFullYear() }} Andrew Lee. All rights reserved.</p>
            </v-col>
        </v-footer>
    </div>
</template>

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

<style scoped>

</style>