Skip to content

Commit c7a9013

Browse files
committed
Merge branch 'master' into feature/dotenv
2 parents 55b0ea0 + e5aa8f7 commit c7a9013

File tree

7 files changed

+50
-32
lines changed

7 files changed

+50
-32
lines changed

components/footer/Footer.vue

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<template>
22
<v-footer app color="primary">
3-
<span class="mx-auto white--text font-weight-bold"
4-
>{{ new Date().getFullYear() }} &copy; {{ $config.appName }}</span
5-
>
3+
<span class="mx-auto white--text font-weight-bold">
4+
{{ new Date().getFullYear() }} &copy; {{ $config.appName }}
5+
{{ $config.appVersion }}
6+
</span>
67
</v-footer>
78
</template>
89

nuxt.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ export default {
122122
*/
123123
publicRuntimeConfig: {
124124
appName: process.env.APP_NAME,
125+
appVersion: 'v1.0.0',
125126
},
126127
/**
127128
* Private runtime configs

package-lock.json

+40-24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

store/global/actions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ActionTree } from 'vuex'
1+
import type { ActionTree } from 'vuex'
22
import { StateInterface } from './state.types'
33

44
const Actions: ActionTree<StateInterface, () => void> = {

store/global/getters.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { GetterTree } from 'vuex'
1+
import type { GetterTree } from 'vuex'
22
import { StateInterface } from './state.types'
33

44
const Getters: GetterTree<StateInterface, () => any> = {

store/global/mutations.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { MutationTree } from 'vuex'
1+
import type { MutationTree } from 'vuex'
22
import { StateInterface, AlertInterface } from './state.types'
33

44
const Mutations: MutationTree<StateInterface> = {

types/vue-shims-tsx.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import Vue, { VNode } from 'vue'
2-
1+
import Vue from 'vue'
2+
import type { VNode } from 'vue'
33
declare global {
44
namespace JSX {
55
type Element = VNode

0 commit comments

Comments
 (0)