SunEditor didn't working at Vue-Cli when I import the Link or Image or Video.

Created on 15 Sep 2018  Β·  2Comments  Β·  Source: JiHong88/SunEditor

Vueμ—μ„œ μ“Έλ €κ³  ν•˜λ‹ˆ Image μ‚½μž…ν• λ €κ³  λ²„νŠΌλˆ„λ₯΄μžλ§ˆμž Errorκ°€ λ°œμƒν•©λ‹ˆλ‹€.

SunEditor.vue

<template lang="html">
  <textarea id="sample">Hi</textarea>
</template>

<script>
export default {
  mounted() {
    const suneditor = SUNEDITOR.create('sample',{
      width: '80%',
      height: '500px'
    });
  }
}
</script>

<style lang="css">
</style>

Hello.vue

<template lang="html">
  <div>
    <p class="text-info">Hello.vue</p>
    <SunEditor></SunEditor>
  </div>
</template>

<script>
import SunEditor from './SunEditor.vue'

export default {
  components : {
    SunEditor
  }
}
</script>

<style lang="css">
</style>

Erro Message in /src/suneditor.js

image

Most helpful comment

μ•ˆλ…•ν•˜μ„Έμš”~

κΈ°μ‘΄ 버전은 λ…Έλ“œ ν™˜κ²½μ—μ„œ μ œλŒ€λ‘œ λ™μž‘ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€.

2.0.0 버전 λΆ€ν„° μ‚¬μš© κ°€λŠ₯ν•©λ‹ˆλ‹€.

버전 μ—…λ°μ΄νŠΈλ₯Ό ν–ˆμœΌλ‹ˆ λ‹€μ‹œ λ‹€μš΄λ‘œλ“œν•΄μ„œ μ‚¬μš©ν•΄λ³΄μ„Έμš”.^^

예제 νŒŒμΌλ„ 같이 μ—…λ°μ΄νŠΈ ν–ˆμŠ΅λ‹ˆλ‹€.

All 2 comments

@lacuca I think the problem is because it doesn't find the file of each plugin. Right now when you click the button it tries to find the plugin's file path, append the script file, and then call it. When it calls the plugin it doesn't find the path on node_modules folder. That's why you have this error.
Right now the way is written does not play very well with the existing libraries and frameworks.

There is an second branch right now that will be more modular to be used by libraries, frameworks and bundlers.

It will be available soon.

Thanks

μ•ˆλ…•ν•˜μ„Έμš”~

κΈ°μ‘΄ 버전은 λ…Έλ“œ ν™˜κ²½μ—μ„œ μ œλŒ€λ‘œ λ™μž‘ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€.

2.0.0 버전 λΆ€ν„° μ‚¬μš© κ°€λŠ₯ν•©λ‹ˆλ‹€.

버전 μ—…λ°μ΄νŠΈλ₯Ό ν–ˆμœΌλ‹ˆ λ‹€μ‹œ λ‹€μš΄λ‘œλ“œν•΄μ„œ μ‚¬μš©ν•΄λ³΄μ„Έμš”.^^

예제 νŒŒμΌλ„ 같이 μ—…λ°μ΄νŠΈ ν–ˆμŠ΅λ‹ˆλ‹€.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

crying2812 picture crying2812  Β·  3Comments

cacuestai picture cacuestai  Β·  3Comments

chbin05 picture chbin05  Β·  3Comments

redone80 picture redone80  Β·  4Comments

Saeeed-B picture Saeeed-B  Β·  7Comments