Skip to content

Commit f9c80f0

Browse files
Merge pull request #71 from webdevnerdstuff/dev
Dev
2 parents eee6057 + d94c401 commit f9c80f0

7 files changed

+131
-101
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to the "vuetify-drilldown-table" plugin will be documented in this file.
33

4+
## v1.1.4
5+
2024-03-13
6+
[main] (@webdevnerdstuff)
7+
* Change component to use `defineAsyncComponent`
8+
49
## v1.1.3
510
2024-02-26
611
[main] (@webdevnerdstuff)

dist/VDrilldownTable-BA2hnfOR.mjs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import o from "./vuetify-drilldown-table.es.js";
2+
/**
3+
* @name @wdns/vuetify-drilldown-table
4+
* @version 1.1.4
5+
* @description The Vuetify Drilldown Table is a powerful component that enhances the functionality of the Vuetify framework's VDataTable and VDataTableServer. It provides a recursive table structure, allowing you to display hierarchical data in a nested format.
6+
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <[email protected]> (https://webdevnerdstuff.com)
7+
* @copyright Copyright 2024, WebDevNerdStuff
8+
* @homepage https://webdevnerdstuff.github.io/vuetify-drilldown-table/
9+
* @repository https://github.com/webdevnerdstuff/vuetify-drilldown-table
10+
* @license MIT License
11+
*/
12+
export {
13+
o as default
14+
};

dist/VDrilldownTable-CB1KOdXg.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
"use strict";/**
2+
* @name @wdns/vuetify-drilldown-table
3+
* @version 1.1.4
4+
* @description The Vuetify Drilldown Table is a powerful component that enhances the functionality of the Vuetify framework's VDataTable and VDataTableServer. It provides a recursive table structure, allowing you to display hierarchical data in a nested format.
5+
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <[email protected]> (https://webdevnerdstuff.com)
6+
* @copyright Copyright 2024, WebDevNerdStuff
7+
* @homepage https://webdevnerdstuff.github.io/vuetify-drilldown-table/
8+
* @repository https://github.com/webdevnerdstuff/vuetify-drilldown-table
9+
* @license MIT License
10+
*/Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./vuetify-drilldown-table.cjs.js");exports.default=e.default;

dist/vuetify-drilldown-table.cjs.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vuetify-drilldown-table.es.js

+97-97
Large diffs are not rendered by default.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wdns/vuetify-drilldown-table",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "The Vuetify Drilldown Table is a powerful component that enhances the functionality of the Vuetify framework's VDataTable and VDataTableServer. It provides a recursive table structure, allowing you to display hierarchical data in a nested format.",
55
"private": false,
66
"publishConfig": {

src/plugin/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { defineAsyncComponent } from 'vue';
12
import type { App } from 'vue';
23
import type { GlobalOptions } from './types';
34
import './styles/main.scss';
@@ -10,7 +11,7 @@ export function createVDrilldownTable(options: GlobalOptions = {}) {
1011
const install = (app: App) => {
1112
app.provide(globalOptions, options);
1213

13-
app.component('VDrilldownTable', VDrilldownTable);
14+
app.component('VDrilldownTable', defineAsyncComponent(() => import('./VDrilldownTable.vue')));
1415
};
1516

1617
return {

0 commit comments

Comments
 (0)