Files
myprojplanet_vite/src/rootgen/admin/departments/departments.vue
2021-10-01 03:08:43 +02:00

32 lines
831 B
Vue
Executable File

<template>
<CMyPage title="Uffici" imgbackground="images/produttori.jpg" sizes="max-height: 120px">
<span>{{
setmeta({
title: 'Uffici',
description: '',
keywords: '',
})
}}
</span>
<div class="q-ma-sm q-gutter-sm q-pa-xs">
<CTitleBanner title="Uffici"></CTitleBanner>
<CGridTableRec
prop_mytable="departments"
prop_mytitle="Lista Uffici"
:prop_mycolumns="colTabledepartments"
prop_colkey="name"
nodataLabel="Nessun Ufficio"
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
</CGridTableRec>
</div>
</CMyPage>
</template>
<script lang="ts" src="./departments.ts">
</script>
<style lang="scss" scoped>
@import 'departments.scss';
</style>