Files
myprojplanet_vite/src/components/CSkill/CSkill.vue
paoloar77 ed6abf2b07 InfiniteScroll 3
fix user list
send telegram text
invited show in profile
2022-08-18 05:26:21 +02:00

35 lines
943 B
Vue
Executable File

<template>
<div>
<div class="q-my-sm q-gutter-xs q-py-xs">
<CGridTableRec
v-if="filtercustom.length > 0 && col && col.length > 0"
:prop_mytable="table"
prop_mytitle=""
:prop_mycolumns="col"
:prop_colkey="prop_colkey"
:col_title="col_title"
:col_footer="col_footer"
:vertical="costanti.VISUTABLE_LISTA"
:choose_visutype="!visuinpage"
:butt_modif_new="!visuinpage"
nodataLabel="Nessun dato presente"
:prop_search="false"
:visuinpage="visuinpage"
noresultLabel="Il filtro selezionato non ha trovato nessun risultato"
:defaultnewrec="getdefaultnewrec"
:filtercustom="filtercustom"
v-bind="$attrs"
:extraparams="extraparams">
</CGridTableRec>
</div>
</div>
</template>
<script lang="ts" src="./CSkill.ts">
</script>
<style lang="scss" scoped>
@import './CSkill.scss';
</style>