Files
myprojplanet_vite/src/components/CElemStat/CElemStat.ts

25 lines
388 B
TypeScript
Raw Normal View History

2022-12-10 02:01:26 +01:00
import { defineComponent } from 'vue'
2025-03-01 14:14:43 +01:00
import { tools } from '@tools'
2022-12-10 02:01:26 +01:00
export default defineComponent({
name: 'CElemStat',
props: {
title: String,
icon: String,
value_today: Number,
mytextval: String,
2022-12-10 02:01:26 +01:00
classColor: String,
colBack: String,
mystyle: String,
myclass: String,
2022-12-10 02:01:26 +01:00
},
components: {},
setup(props) {
return {
tools
}
},
})