- Aggiornato tutti i pacchetti del server all'ultima versione. - passato mongoose da versione 5 a versione 6
25 lines
388 B
TypeScript
25 lines
388 B
TypeScript
import { defineComponent } from 'vue'
|
|
|
|
import { tools } from '@tools'
|
|
|
|
export default defineComponent({
|
|
name: 'CElemStat',
|
|
props: {
|
|
title: String,
|
|
icon: String,
|
|
value_today: Number,
|
|
mytextval: String,
|
|
classColor: String,
|
|
colBack: String,
|
|
mystyle: String,
|
|
myclass: String,
|
|
},
|
|
components: {},
|
|
setup(props) {
|
|
|
|
return {
|
|
tools
|
|
}
|
|
},
|
|
})
|