Files
myprojplanet_vite/src/rootgen/admin/tablesList/tablesList.vue
2021-10-02 02:03:10 +02:00

34 lines
789 B
Vue
Executable File

<template>
<CMyPage img="" :title="$t('otherpages.admin.tableslist')" keywords="" description="">
<CGridTableRec
:prop_mytitle="$t('otherpages.admin.tableslist')"
:nodataLabel="$t('grid.nodata')"
noresultLabel="Il filtro selezionato non ha trovato nessun risultato"
:tablesList="gettablesList()"
>
</CGridTableRec>
<!--
<CGridTableRec
prop_mytable="sites"
prop_mytitle="Lista Siti"
:prop_mycolumns="colTableSites"
prop_colkey="name"
nodataLabel="Nessun Sito"
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
</CGridTableRec>
-->
</CMyPage>
</template>
<script lang="ts" src="./tablesList.ts">
</script>
<style lang="scss" scoped>
@import './tablesList.scss';
</style>