- newsletter: prende la lista utenti (flag news_on)
- Abilita a Tutti la Newsletter news_on - isCommerciale - JobsInProgress - PCB: Corretto Totali che era a zero
This commit is contained in:
0
src/components/CStatMacro/CStatMacro.scss
Executable file
0
src/components/CStatMacro/CStatMacro.scss
Executable file
35
src/components/CStatMacro/CStatMacro.ts
Executable file
35
src/components/CStatMacro/CStatMacro.ts
Executable file
@@ -0,0 +1,35 @@
|
||||
import Vue, { computed, defineComponent, onMounted, ref } from 'vue'
|
||||
|
||||
import { tools } from '../../store/Modules/tools'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useQuasar } from 'quasar'
|
||||
|
||||
import type { ChartItem, ChartConfiguration } from 'chart.js';
|
||||
import { Chart, BarController, BarElement, LineController, LinearScale, CategoryScale, PointElement, LineElement, Title } from 'chart.js';
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CStatMacro',
|
||||
components: {},
|
||||
setup(props, { emit }) {
|
||||
|
||||
const userStore = useUserStore()
|
||||
const globalStore = useGlobalStore()
|
||||
const { t } = useI18n()
|
||||
const q = useQuasar()
|
||||
|
||||
function mounted() {
|
||||
|
||||
}
|
||||
|
||||
onMounted(mounted)
|
||||
|
||||
return {
|
||||
tools,
|
||||
q,
|
||||
}
|
||||
},
|
||||
})
|
||||
12
src/components/CStatMacro/CStatMacro.vue
Executable file
12
src/components/CStatMacro/CStatMacro.vue
Executable file
@@ -0,0 +1,12 @@
|
||||
<template>
|
||||
<div>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./CStatMacro.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './CStatMacro.scss';
|
||||
</style>
|
||||
1
src/components/CStatMacro/index.ts
Executable file
1
src/components/CStatMacro/index.ts
Executable file
@@ -0,0 +1 @@
|
||||
export {default as CStatMacro} from './CStatMacro.vue'
|
||||
Reference in New Issue
Block a user