Skip to content

Commit c42aee3

Browse files
committed
fix: export
1 parent 9e7f2d8 commit c42aee3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/export.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as Component from '@/components';
2-
import * as Plugin from '@/plugins';
2+
import { HyONEPlugin } from '@/plugins';
33

44
export {
55
Component,
6-
Plugin,
6+
HyONEPlugin,
77
};

src/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { createApp } from 'vue';
22
import App from './App.vue';
3-
import { Plugin } from '../dist/hyone-ui.umd';
3+
import { HyONEPlugin } from '../dist/hyone-ui.umd';
44
import '../dist/hyone-ui.css';
55

66
createApp(App)
7-
.use(Plugin.HyONEPlugin)
7+
.use(HyONEPlugin)
88
.mount('#app');

0 commit comments

Comments
 (0)