Skip to content

Commit 278f42e

Browse files
authored
Inform Users on How to Save
it was very hard to figure out why the old code was not working but i found out. i believe it is important to tell people how to do it as well.
1 parent 2826003 commit 278f42e

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

README.md

+26
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,32 @@ yarn add @editorjs/header
162162
/>
163163
```
164164

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+
165191
## Upload Image (>= 1.1.0)
166192

167193
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

Comments
 (0)