Files
salvato.newfreeplanet/src/components/CSkill/CSkill.vue

32 lines
799 B
Vue
Raw Normal View History

2021-10-08 00:38:22 +02:00
<template>
<div>
<div class="q-ma-sm q-gutter-sm q-pa-xs">
<CGridTableRec
2022-01-03 21:53:41 +01:00
v-if="filtercustom.length > 0"
2021-10-08 00:38:22 +02:00
prop_mytable="myskills"
prop_mytitle=""
2021-10-08 00:38:22 +02:00
:prop_mycolumns="colmySkills"
prop_colkey="idSkill"
2021-12-03 22:47:53 +01:00
col_title="subTitle"
:vertical="true"
2022-01-23 23:25:19 +01:00
:choose_visutype="true"
2021-10-08 00:38:22 +02:00
nodataLabel="Nessuna Competenza inserita"
:prop_search="false"
noresultLabel="Il filtro selezionato non ha trovato nessun risultato"
2021-12-11 00:25:35 +01:00
:defaultnewrec="getdefaultnewrec"
:filtercustom="filtercustom"
2022-01-03 21:53:41 +01:00
v-bind="$attrs"
2021-12-11 00:25:35 +01:00
:extraparams="extraparams()">
2021-10-08 00:38:22 +02:00
</CGridTableRec>
</div>
</div>
</template>
<script lang="ts" src="./CSkill.ts">
</script>
<style lang="scss" scoped>
@import './CSkill.scss';
</style>