Skip to content

Instantly share code, notes, and snippets.

View gauravmak's full-sized avatar
🎯
Excited about the future

Gaurav Makhecha gauravmak

🎯
Excited about the future
View GitHub Profile
@gauravmak
gauravmak / Companies.vue
Created April 12, 2022 04:29
Sample Vue code with custom components
<template>
<div class="flex flex-col p-6 bg-white rounded-20">
<PTable :fetch-records="fetchAllCompanies"
:columns="state.fields"
:refresh-table-data="state.refreshTableData"
>
<template #header-content>
<AddButton @clicked="state.isModalOpen = true">
Add New Company
</AddButton>