Updated Quill import so it works with current module standards
Replaced 'import * as Quill' with 'import Quill' since Quill is expected to be a constructor not an object.pull/347/head
parent
d141c8ee3c
commit
4ccf7ce6e6
|
@ -48,7 +48,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import * as Quill from "quill";
|
||||
import Quill from "quill";
|
||||
|
||||
export default {
|
||||
props: {
|
||||
|
@ -1058,4 +1058,4 @@ export default {
|
|||
.ql-container.ql-snow {
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue