We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d4f9c5 commit 60b8343Copy full SHA for 60b8343
src/main.ts
@@ -1,7 +1,7 @@
1
import '@/libraries/fontawesome';
2
import App from './App.vue';
3
import CodeBlock from '@wdns/vue-code-block';
4
-import VDrilldownTable from './index';
+import { createVDrilldownTable } from './plugin/index';
5
import { createApp } from 'vue';
6
import { createPinia } from 'pinia';
7
import { makeServer } from './server';
@@ -11,7 +11,7 @@ import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
11
makeServer({ environment: 'demo' });
12
13
const app = createApp(App);
14
-app.use(VDrilldownTable);
+app.use(createVDrilldownTable());
15
app.component('CodeBlock', CodeBlock);
16
app.use(createPinia());
17
app.component('font-awesome-icon', FontAwesomeIcon);
0 commit comments