Vue.component('Pop', { //language=Vue // g template: ` `, data() { return { window: window, PopTableConfig: { key: 'PopTable', tableHeader: 'Pops', defaultPageSize: 25, headers: [ {text: 'Name', key: 'name', priority: 10}, {text: 'Netzgebiet', key: 'networkArea', class: 'text-center', // TODO: fix autocomplete Filter // filter: 'autocomplete', // filterOptions: window['TT_CONFIG']['NETWORKS'], // priority: 8 }, {text: 'Zutritt', key: 'location', class: 'text-center', priority: 1}, {text: 'Standort', key: 'gps', class: 'text-center', priority: 2}, {text: 'Adresse', key: 'address', class: 'text-center', priority: 3}, {text: 'Status', key: 'state', class: 'text-center', priority: 4, filter: 'select', filterOptions: [ {value: '1', text: 'Planung'}, {value: '2', text: 'Bauphase'}, {value: '3', text: 'Grobdoku'}, {value: '4', text: 'In Betrieb'}, {value: '5', text: 'Abgenommen'}]}, {text: 'Doku-Stand', key: 'doku_date', class: 'text-center', priority: 4, filter: 'date'}, {text: 'Vlan Public/Nat/ipv6', key: 'vlan', class: 'text-center', priority: 7}, {text: 'Aktionen', key: 'actions', class: 'text-center', sortable: false, filter: false, priority: 9}, ], }, } } });