Files
myprojplanet_vite/src/components/CSkill/CSkill.vue
2023-01-05 01:37:25 +01:00

37 lines
987 B
Vue
Executable File

ù<template>
<div>
<div class="q-my-xs">
<CGridTableRec
v-if="filtercustom.length > 0 && col && col.length > 0"
:prop_mytable="table"
:prop_mytitle="title"
: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"
:noaut="noaut"
:hidetitleIfEmpty="true">
</CGridTableRec>
</div>
</div>
</template>
<script lang="ts" src="./CSkill.ts">
</script>
<style lang="scss" scoped>
@import './CSkill.scss';
</style>