This repository was archived by the owner on Jul 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
This repository was archived by the owner on Jul 28, 2021. It is now read-only.
why broken css style? #35
Copy link
Copy link
Open
Description
Version
1.2.0
Development Environment
MAC OS Mojave
Current Behavior
<template>
<ImageEditor :options="options"
ref="tuiImageEditor"
@addText="onAddText"
@objectMoved="onObjectMoved"
></ImageEditor>
</template>
<script>
import 'tui-image-editor/dist/tui-image-editor.css';
import {ImageEditor} from '@toast-ui/vue-image-editor';
import icon_a from "tui-image-editor/dist/svg/icon-a.svg";
import icon_b from "tui-image-editor/dist/svg/icon-b.svg";
import icon_c from "tui-image-editor/dist/svg/icon-c.svg";
import icon_d from "tui-image-editor/dist/svg/icon-d.svg";
export default {
components: {
ImageEditor,
},
data() {
return {
useDefaultUI: false,
options: { // for tui-image-editor component's "options" prop
cssMaxWidth: document.documentElement.clientWidth,
cssMaxHeight: document.documentElement.clientHeight,
selectionStyle: {
cornerSize: 50,
rotatingPointOffset: 70
},
includeUI : {
initMenu: "filter",
menuBarPosition: "bottom",
uiSize:{
width: "100%",
height: "800px",
},
theme: theme,
locale: locale_ko,
},
resizeInfo: {
uiSize: {
width: "500px",
height: "500px",
},
imageSize:{
oldWidth: 100,
oldHeight: 100,
newWidth: 700,
newHeight: 700,
}
}
}
};
},
}
</script>
// Write example codeExpected Behavior
I loaded picture simply. but why broken css style??
why difference style between nhn and me??
Metadata
Metadata
Assignees
Labels
No labels

