This repository was archived by the owner on Jul 28, 2021. It is now read-only.

Description
Version
toast-ui.vue-image-editor 1.0.2
"@toast-ui/vue-image-editor": "^1.0.2",
"axios": "^0.18.1",
"moment": "^2.24.0",
"vue": "^2.6.6",
"vue-router": "^3.0.1",
"vuetify": "^1.5.5",
"vuex": "^3.1.0"
Development Environment
windows 10 - 64 , chrome
when the page with the editor opens it looks like this:

All elements are on the left side of the screen
<template>
<v-container class="imageEditorApp">
<tui-image-editor :include-ui="useDefaultUI" :options="options"></tui-image-editor>
</v-container>
</template>
<script>
import { ImageEditor } from '@toast-ui/vue-image-editor';
export default {
components: {
'tui-image-editor': ImageEditor
},
data() {
return {
useDefaultUI: true,
options: { // for tui-image-editor component's "options" prop
usageStatistics: false,
cssMaxWidth: 700,
cssMaxHeight: 500,
menuBarPosition: 'bottom'
}
};
}
}
</script>