- Doppia modalità di Registrazione con lista extra utenti
- fixed grid pagination
This commit is contained in:
@@ -3,9 +3,36 @@ import Vue from 'vue'
|
||||
import Component from 'vue-class-component'
|
||||
import { CalendarStore } from '../store/Modules'
|
||||
import { UserStore } from '@modules'
|
||||
import MixinMetaTags from './mixin-metatags'
|
||||
import { CImgText, CTitle, CCardOperator } from '@components'
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
|
||||
@Component({
|
||||
components: { CImgText, CTitle, CCardOperator }
|
||||
})
|
||||
|
||||
export default class MixinOperator extends MixinMetaTags {
|
||||
public $q
|
||||
public $t: any
|
||||
|
||||
get mythis() {
|
||||
return this
|
||||
}
|
||||
|
||||
get tools() {
|
||||
return tools
|
||||
}
|
||||
|
||||
get isEstate(){
|
||||
const now = new Date()
|
||||
return (now.getMonth() === 5) || (now.getMonth() === 6) || (now.getMonth() === 7) || (now.getMonth() === 8)
|
||||
}
|
||||
|
||||
get isEstateRiprenderanno(){
|
||||
const now = new Date()
|
||||
return (now.getMonth() === 9)
|
||||
}
|
||||
|
||||
@Component
|
||||
export default class MixinOperator extends Vue {
|
||||
public getOperators() {
|
||||
return CalendarStore.state.operators
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user