Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkingshott committed May 8, 2023
1 parent 7b88dc3 commit 396f421
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@caneara/varnish",
"author": "Caneara",
"version": "5.0.1",
"version": "5.0.2",
"license": "MIT",
"description": "A library of UI components built using Vue.js and TailwindCSS.",
"repository": {
Expand Down
9 changes: 9 additions & 0 deletions src/components/grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,19 @@
<script>
import EmptyComponent from './empty.vue';
import SearchComponent from './search.vue';
import Utilities from '../mixins/Utilities';
import PaginatorComponent from './paginator.vue';
export default
{
/**
* Define the mixins.
*
*/
mixins : [
Utilities,
],
/**
* Define the components.
*
Expand Down
9 changes: 9 additions & 0 deletions src/components/paginator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,18 @@

<script>
import { router } from '@inertiajs/vue3';
import Utilities from '../mixins/Utilities';
export default
{
/**
* Define the mixins.
*
*/
mixins : [
Utilities,
],
/**
* Define the public properties.
*
Expand Down
9 changes: 9 additions & 0 deletions src/components/table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,19 @@
<script>
import EmptyComponent from './empty.vue';
import SearchComponent from './search.vue';
import Utilities from '../mixins/Utilities';
import PaginatorComponent from './paginator.vue';
export default
{
/**
* Define the mixins.
*
*/
mixins : [
Utilities,
],
/**
* Define the components.
*
Expand Down

0 comments on commit 396f421

Please sign in to comment.