29 questions
0
votes
0
answers
62
views
QuillEditor --> add Module Placeholder
I wanted to add the placeholder-module in my quill-editor. I have installed the quill-placeholder-module. Whenever I tried to register it in OnMounted, it throws an error:
index.ts:35 quill Cannot ...
1
vote
0
answers
534
views
How to add quill-emoji to vue-quill
I want to add emojis to my quill toolbar i saw the documentation of vue quill and tried to follow it as much i understood but i dont see anything on my quill toolbar
https://vueup.github.io/vue-quill/...
0
votes
0
answers
418
views
I am not able to getSelection() in useVueQuill
I am trying to get the cursor coordinates to be able to add some text but when i am trying to use getSelection i got this error : Uncaught (in promise) TypeError: Cannot read properties of null (...
2
votes
1
answer
613
views
Document is not defined in nuxt3
in nuxt3 i am trying to use Quill Rich Text Editor. When i run the project main or index file is opening properly but when i am trying to open the page containing the Quill Editor it shows error
...
2
votes
1
answer
3k
views
Changing quill editor background color when disabled
I have this quill editor
Code:
<quill-editor
style="height: 200px; margin-left: -48px; width: 109%"
class="content-input qleditor"
:options="options"
:...
1
vote
1
answer
2k
views
struggling vue3 vueQuill adding table
i tried my best for few days... but i have no idea how to add table module into my vue3 project.
i tried many ways and I stucked here...
// imports
import { QuillEditor } from "@vueup/vue-quill&...
-1
votes
2
answers
3k
views
Nuxt 3 + Quill Editor: quill:toolbar Container required for toolbar
Someone, please help me, for more than 3 hours I am stuck with this problem, I tried using Nuxt 3 and quill editor with the customized toolbar, here is the code
html
<client-only>
<...
3
votes
3
answers
7k
views
How to show default value in Quill text editor in Vue3
As you can see in the picture, I have a text editor with Quill. this is admin panel in my project and when I write something in my text editor and want to display it, it is working fine. For example, ...
0
votes
1
answer
2k
views
Quill Editor switches to RTL language direction when decorated with "ref" property
I've created a text-editor vue component with quill editor and configured it to display data from a database inside its input field. For that I need the ref="quill" property on the <quill-...
1
vote
4
answers
6k
views
Quill Editor won't display v-model in input field (Vue 3)
I want to display some html, fetched from a database inside of quill editor. The html seems to be fine (displayed in <p> paragraph) and is bound to quill editor via v-model but it just does not ...
2
votes
1
answer
3k
views
How to render/show Quill raw HTML in vuejs
I have quill editor in vuejs app. I save raw HTML generated by Quill directly to Database (i.e. no cleaning at all). When I fetch it from the backend, text and all styling are shown correctly (i.e. if ...
1
vote
0
answers
54
views
QuillEditor can't inject post.content on update route
I am building my first CRUD app on Vue.js with node server and MongoDB.
I implemented the QuillEditor and it's working wonderfully to create my post, send the HTML content as a string to MongoDB and ...
0
votes
1
answer
755
views
How to use custom input component in vuejs?
While using Bootstrap-Vue as UI framework, I am trying to make a custom form component and use it in several parent components. Here is my form component
<template>
<b-form>
<b-...
0
votes
1
answer
2k
views
Why vue showing `[Vue warn]: Error in v-on handler: "TypeError: Cannot read property 'content' of undefined"` error?
I am new to Vuejs & trying to use vue-quill-editor. Here I am trying to Use Quill editor Component in other components.
WysiwygInput.vue
<quill-editor
:options="{
placeholder: ...
2
votes
0
answers
887
views
Blockquote within Blockquote and creating a multiline quoteblock in vue-quill-editor
Basically I want to be able to have a multiline blockquote. The way blockquote works now in quill is that each line break is itself another blockquote.
<blockquote>Author name</blockquote>
...