ここで、vue プロジェクトでの ueditor の使用例を共有します。これは非常に参考になるので、皆さんのお役に立てれば幸いです。
例としてvue-cliで生成されたプロジェクトを取り上げます
1.まず、ueditorファイルを1.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 add
<script type="text/javascript"> window.UEDITOR_HOME_URL = "/static/ueditor/";//配置路径设定为UEditor所放的位置 </script>
5. エディタコンポーネント
<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>
上記は私が皆さんのためにまとめたものであり、将来皆さんのお役に立てば幸いです。
関連記事:
以上がvue プロジェクトで ueditor を使用する (詳細なチュートリアル)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。