Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

fix(templates): Vuetify copyright year #415

Merged
merged 4 commits into from
Jan 27, 2020
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions template/frameworks/vuetify/layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
:fixed="fixed"
app
>
<span>&copy; 2019</span>
<span>&copy; {{ copyrightYear }}</span>
</v-footer>
</v-app>
</template>
Expand All @@ -110,7 +110,8 @@ export default {
miniVariant: false,
right: true,
rightDrawer: false,
title: 'Vuetify.js'
title: 'Vuetify.js',
copyrightYear: new Date().getFullYear()
}
}
}
Expand Down