Skip to content

Commit

Permalink
fix: 🎨 remove default export
Browse files Browse the repository at this point in the history
To make it consistent between es-module and commonjs
  • Loading branch information
luthfimasruri committed Mar 24, 2021
1 parent 6d6e589 commit 2c44d9d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
* Github: https://github.com/vueup/vue-quill.git
*/

import QuillEditor from "./components/QuillEditor"
import Quill from "quill"

export { QuillEditor, Quill }
export default QuillEditor
import { QuillEditor } from "./components/QuillEditor"
export { QuillEditor, Quill }

0 comments on commit 2c44d9d

Please sign in to comment.