Skip to content

Instantly share code, notes, and snippets.

View vhpm18's full-sized avatar

VictorHugo Pereira vhpm18

  • San juan de los Morros, Venezuela
View GitHub Profile
@vhpm18
vhpm18 / PrimeDatatables.vue
Created November 14, 2023 21:58 — forked from coolsam726/PrimeDatatables.vue
A fully functional Vue component to work with savannabits/primevue-datatables package (Works with tailwindcss and Vue.js 3.x). NB: The usage example is based on savannabits/acacia, a backend generator I developed to make your life easier by generating code for the backend CRUDs. You can flesh out the unnecessary parts to remain with the bare-bon…
<template>
<DataTable
class="p-datatable-sm"
:value="records"
:lazy="true"
:auto-layout="true"
:paginator="true"
:rows="10"
v-model:filters="filters"
ref="dt"