이번에는 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 중국어 웹사이트의 다른 관련 기사에 주목하세요!
추천 자료:
WebGL이 json 및 echarts 차트를 작동하는 방법
위 내용은 Vue 프로젝트에서 ueditor를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!