Vue 프로젝트에서 ueditor를 사용하는 방법

php中世界最好的语言
풀어 주다: 2018-03-27 14:55:22
원래의
3101명이 탐색했습니다.

이번에는 vue 프로젝트에서 ueditor를 사용하는 방법을 알려드리겠습니다. vue 프로젝트에서 ueditor를 사용할 때 주의사항은 무엇인가요?

vue-cli로 생성된 프로젝트를 예로 들어보세요

1. 먼저 ueditor 파일을 .static 폴더에 넣으세요

2.index.html 다음 코드를 추가하세요

<script type="text/javascript" charset="utf-8" src="static/ueditor/ueditor.config.js"></script>
<script type="text/javascript" charset="utf-8" src="static/ueditor/ueditor.all.min.js"></script>
로그인 후 복사

3 .webpack.base.conf.js에 다음 구성을 추가합니다.

externals: {
  'UE': 'UE',
 },
로그인 후 복사

4.index.html

<script type="text/javascript">
 window.UEDITOR_HOME_URL = "/static/ueditor/";//配置路径设定为UEditor所放的位置
</script>
로그인 후 복사

5.editor 구성 요소

<template>
 <p>
  <mt-button @click="geteditor()" type="danger">获取</mt-button>
  <script id="editor" type="text/plain" style="width:1024px;height:500px;"></script>
 </p>
</template>
<script>
const UE = require('UE');// eslint-disable-line
export default {
 name: 'editorView',
 data: () => (
  {
   editor: null,
  }
 ),
 methods: {
  geteditor() {
   console.log(this.editor.getContent());
  },
 },
 mounted() {
  this.editor = UE.getEditor('editor');
 },
 destroyed() {
  this.editor.destroy();
 },
};
</script>
<style>
</style>
로그인 후 복사

를 추가합니다. 이 기사 방법의 사례를 읽은 후 마스터했습니다. 더 흥미로운 정보를 보려면 PHP 중국어 웹사이트의 다른 관련 기사에 주목하세요!

추천 자료:

캔버스가 3D 동적 차트를 만드는 방법

WebGL이 json 및 echarts 차트를 작동하는 방법

위 내용은 Vue 프로젝트에서 ueditor를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!