We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2826003 commit 278f42eCopy full SHA for 278f42e
README.md
@@ -162,6 +162,32 @@ yarn add @editorjs/header
162
/>
163
```
164
165
+#### Saving Example Code
166
+```vue
167
+<template>
168
+ <div id="app">
169
+ <Editor ref="editor" :config="config" />
170
+
171
+ <button @click="invokeSave">Save</button>
172
+ </div>
173
+</template>
174
175
+<script>
176
+ export default {
177
+ methods: {
178
+ invokeSave() {
179
+ this.$refs.editor._data.state.editor.save()
180
+ .then((data) => {
181
+ // Do what you want with the data here
182
+ console.log(data)
183
+ })
184
+ .catch(err => { console.log(err) })
185
+ }
186
+ },
187
188
+</script>
189
+```
190
191
## Upload Image (>= 1.1.0)
192
193
for uploading images, You will need a backend for processing the images. vue-editor-js provides a special `config` prop for easability.
0 commit comments