今回は、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>
WebGL を使用して json および echarts チャートを操作する方法
以上がvueプロジェクトでueditorを使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。