vue2-bbl-editor 1.5.8 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/dist/vue2-bbl-editor.common.js +34447 -31802
- package/dist/vue2-bbl-editor.css +5095 -1
- package/dist/vue2-bbl-editor.umd.js +34568 -31923
- package/dist/vue2-bbl-editor.umd.min.js +34568 -31923
- package/package.json +12 -13
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Vue 2 Premium BBL Editor
|
|
2
2
|
|
|
3
|
-
A production-ready, fully configurable rich text editor for Vue 2.
|
|
3
|
+
A production-ready, fully configurable rich text editor for Vue 2.7 applications. Built with Tiptap and designed for professional use with extensive customization options and advanced upload management system.
|
|
4
4
|
|
|
5
5
|
## 🚀 Features
|
|
6
6
|
|
|
7
|
-
- ✅ **Vue 2.
|
|
7
|
+
- ✅ **Vue 2.7 Compatible** - Full support for Vue 2.7+ applications
|
|
8
8
|
- ✅ **Production Ready** - Thoroughly tested and optimized for production use
|
|
9
9
|
- ✅ **Fully Configurable** - Extensive props for customizing every aspect
|
|
10
10
|
- ✅ **Rich Text Editing** - Complete formatting options (bold, italic, underline, etc.)
|
|
@@ -89,7 +89,7 @@ const unwrappedContent = this.$refs.editor.getContent('html', false)
|
|
|
89
89
|
### Component Registration
|
|
90
90
|
|
|
91
91
|
```javascript
|
|
92
|
-
// Composition API version (
|
|
92
|
+
// Composition API version (Vue 2.7+ has built-in Composition API)
|
|
93
93
|
import { PremiumBblEditor } from 'vue2-bbl-editor'
|
|
94
94
|
|
|
95
95
|
// Options API version (pure Vue 2)
|
|
@@ -1539,8 +1539,8 @@ For detailed integration instructions for external projects, see our [External I
|
|
|
1539
1539
|
# Install in your existing project
|
|
1540
1540
|
npm install vue2-bbl-editor
|
|
1541
1541
|
|
|
1542
|
-
# Install required dependencies
|
|
1543
|
-
npm install @
|
|
1542
|
+
# Install required dependencies (Vue 2.7+ has built-in Composition API)
|
|
1543
|
+
npm install @tiptap/core @tiptap/vue-2 @tiptap/starter-kit
|
|
1544
1544
|
```
|
|
1545
1545
|
|
|
1546
1546
|
```vue
|