vue-filepond with toast-ui.vue-image-editor
See original GitHub issueHello
I am trying to integrate toast-ui.vue-image-editor using vue, I tried to follow the example with Doka.js and adapted to toast-ui.vue-image-editor but I am getting error : Uncaught TypeError: Object(…) is not a function, I think it’s related to the create func that it’s imported from vue-filepond. Can you please help? thank you in advance.
import { vueFilePond, create } from 'vue-filepond'
// import FilePondPluginFileValidateType from 'filepond-plugin-file-validate-type'
// Import FilePond styles
import 'filepond/dist/filepond.min.css'
// Import image preview plugin styles
import 'filepond-plugin-image-preview/dist/filepond-plugin-image-preview.min.css'
import { uploadSvc } from '../services/file-upload-svc.js'
// Import image preview and file type validation plugins
import FilePondPluginFileValidateType from 'filepond-plugin-file-validate-type'
import FilePondPluginImagePreview from 'filepond-plugin-image-preview'
import { ImageEditor } from '@toast-ui/vue-image-editor'
// Import the plugin code
import FilePondPluginImageEdit from 'filepond-plugin-image-edit'
// Import the plugin styles
// import 'filepond-plugin-image-edit/dist/filepond-plugin-image-edit.css';
// Create component
const FilePond = vueFilePond(
FilePondPluginFileValidateType,
FilePondPluginImagePreview,
FilePondPluginImageEdit
)
create(document.querySelector('input'), {
// default crop aspect ratio
imageCropAspectRatio: 1,
// resize to width of 200
imageResizeTargetWidth: 200,
// open editor on image drop
imageEditInstantEdit: true,
imageEditEditor: ImageEditor
})
Issue Analytics
- State:
- Created 5 years ago
- Comments:5
Top Results From Across the Web
@toast-ui/vue-image-editor examples - CodeSandbox
Learn how to use @toast-ui/vue-image-editor by viewing and forking example apps that make use of @toast-ui/vue-image-editor on CodeSandbox.
Read more >@toast-ui/vue-image-editor - npm
TOAST UI Image-Editor for Vue. Latest version: 3.15.2, last published: a year ago. Start using @toast-ui/vue-image-editor in your project by ...
Read more >Setting up Pintura Image Editor with Vue - PQINA
A powerful JavaScript Image Editor that integrates with every stack. Fully configurable and works intuitively on every device.
Read more >A Vue component wrapping TOAST UI Image Editor
Vue wrapper for TOAST UI Image Editor. This is a Vue component wrapping TOAST UI Image Editor. Collect statistics on the use of...
Read more >A curated list of awesome things related to Vue.js - Gitee
Inspect; Docs; Test - Browser-less require; Source Code Editing ... No CSS included. vue-toast-notification - Yet another Vue.js Toast notification plugin.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I’ve added some more info to the docs to make it easier to integrate with other editors: https://pqina.nl/filepond/docs/patterns/plugins/image-edit/#integrating-other-editors
Thank you