Skip to content

Commit 2c44d9d

Browse files
committed
fix: 🎨 remove default export
To make it consistent between es-module and commonjs
1 parent 6d6e589 commit 2c44d9d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/main.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
* Github: https://github.com/vueup/vue-quill.git
55
*/
66

7-
import QuillEditor from "./components/QuillEditor"
87
import Quill from "quill"
9-
10-
export { QuillEditor, Quill }
11-
export default QuillEditor
8+
import { QuillEditor } from "./components/QuillEditor"
9+
export { QuillEditor, Quill }

0 commit comments

Comments
 (0)