I'm struggling to remove the toolbar in Quill despite my efforts.
This is the HTML snippet I am working with:
<template>
<quill v-model="content" :config="config"></quill>
</template
Here's what I have inside the script:
<script>
import VueQuill from 'vue-quill';
export default {
data () {
return {
config: {
readOnly: true,
toolbar: false
}
}
}
}
</script>
Although readonly functionality is working properly, the toolbar persists on display.