RootGen (moved)

This commit is contained in:
Paolo Arena
2019-12-18 16:23:50 +01:00
parent 1df1965508
commit ad8f335d6c
22 changed files with 1383 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import Vue from 'vue'
import { Component } from 'vue-property-decorator'
import { CGridTableRec } from '@components'
import { CMyPage } from '../../../components/CMyPage/index'
import { fieldsTable } from '@src/store/Modules/fieldsTable'
@Component({
components: { CGridTableRec, CMyPage }
})
export default class UsersList extends Vue {
get db_fieldsTable() {
return fieldsTable
}
}