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>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import * as Quill from "quill";
|
import Quill from "quill";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
|
|
Loading…
Reference in New Issue