+ Registered Users

+ UsersList Online
This commit is contained in:
Surya Paolo
2022-12-10 02:01:26 +01:00
parent aeeba5a6b9
commit cd31d2d020
18 changed files with 364 additions and 72 deletions

View File

@@ -0,0 +1,23 @@
import { defineComponent } from 'vue'
import { tools } from '@store/Modules/tools'
export default defineComponent({
name: 'CElemStat',
props: {
title: String,
icon: String,
value_today: Number,
mytextval: Number,
classColor: String,
colBack: String,
mystyle: String,
},
components: {},
setup(props) {
return {
tools
}
},
})