Files
myprojplanet_vite/src/components/CElemStat/CElemStat.ts
Surya Paolo 6d112b8e45 - Aggiornato node.js alla versione 22.18.1
- Aggiornato tutti i pacchetti del server all'ultima versione.
- passato mongoose da versione 5 a versione 6
2025-03-03 00:45:56 +01:00

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
}
},
})