Show app version

This commit is contained in:
Douglas Barone 2021-11-17 13:11:50 -04:00
parent 888b579076
commit e43fb0d364

View File

@ -4,8 +4,9 @@
class="font-weight-light"
:class="{ 'display-1': $vuetify.breakpoint.mdAndUp }"
>
Sobre esta aplicação
Sobre o Portal de TI
</v-card-title>
<v-card-subtitle> Versão: {{ version }} </v-card-subtitle>
<v-card-text>
Desenvolvida pelo SERTI de Ponta Porã. Feedback
<a href="mailto:serti.pp@ifms.edu.br">serti.pp@ifms.edu.br</a>.
@ -71,6 +72,8 @@
</template>
<script>
import { version } from '../../package.json'
export default {
name: 'AboutCard',
data: () => ({
@ -141,7 +144,12 @@ export default {
]
}
]
})
}),
computed: {
version() {
return version
}
}
}
</script>