vue-ueditorを使用したvueの問題(ディレクトリに相対するプリセット "es2015 "が見つかりませんでした)
2022-02-28 12:59:55
1. vue-ueditorのインストール
npm i vue-ueditor --S
インストーラを UEditorのコードパッケージをプロジェクトの静的ディレクトリに置く
<スパン
<スパン
UEditorのコードパッケージ( \node_modules-ueditor_staticueditor1_4_3_3) または最新のソースコードと各種言語版を http://ueditor.baidu.com/website/download.html#ueditor でダウンロードできます。
<スパン 2. 使用方法
<スパン
<template>
<div>
<p>fdgdgd</p>
<VueEditor ueditorPath=". /... /static/ueditor1_4_3_3-utf8-net" @ready="editorReady"></VueEditor>
</div>
</template>
import VueEditor from 'vue-ueditor'
components:{
VueEditor
},
methods:{
editorReady(editorInstance){
editorInstance.setContent('Hello world! <br> edit initialized content')
}
}
3、プリセット "es2015" がディレクトリに関連して見つからなかった問題を解決しました。
rookieはES規格を使用しておらず、導入したvue-ueditorはES規格を使用しているため、コンパイルでエラーが報告されるため、解決方法は以下のようになります。
npm install babel-preset-es2015 --save-dev
次に、次のコードを webpack.base.conf.js ファイルに追加してください。
module: {
loaders: [
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel',
query: {
presets: ['es2015']
}
}
]
}
OK、これでvue-uediterが使えるようになりました。
関連
-
npm ERR!コード ENOENT npm ERR!システムコールオープンエラーが解決されました。
-
マウントされたフックでのエラー: "TypeError: TypeError: Cannot read property 'XXXXX' of undefined" マウントされたフックにエラーが発生しました。
-
vueがエラーを報告します。Cannot read property 'xxx' of undefined", but the page renders the data
-
Vue using seven cows cloud upload error o.upload.addEventListener is not function and other error reporting issues.
-
vue リソースの読み込みに失敗しました:サーバーは404(Not Foun)のステータスで応答しました。
-
TypeError: vueルートジャンプ時に未定義のプロパティ'_c'を読み取れない
-
npm install エラー "Unexpected end of JSON input while parsing near" は解決されました。
-
vue reports Error in mounted hook: "SyntaxError: JSON の位置 0 に予期しないトークン u があります".
-
uView Ui "TypeError: 未定義またはNULLをオブジェクトに変換できません"
-
vue__WEBPACK_IMPORTED_MODULE_0__.default is not constructor error.
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
VueのVue.set()でCannot convert undefined or null to objectというエラーが報告される。
-
[Intervention] パッシブイベントリスナー内部で、ターゲットがapparentsとして扱われるため、preventDefaultできない。
-
VueはQRCodeプラグインを使用してQRコードを生成していますが、マウントされたフックでのエラー: "TypeError: nullのプロパティ'appendChild'を読み取れない"
-
vue error TypeError: 未定義のプロパティ 'length' を読み取ることができません...
-
フロントエンドのvueでファイルをダウンロードするいくつかの方法
-
npm install webpack, axiosはフロントエンドのプロジェクトで定義されたソリューションではありません。
-
(Solved) vue3 uses axios to report Uncaught TypeError: Uncaught TypeError: Cannot convert undefined or null to object axios.js:1308エラー
-
エラーです。[Vue warn]: レンダリングでエラーが発生しました。"TypeError: で見つかった「Cannot convert undefined or null to object」。
-
Element UIで初期化データが空の場合、This.$refs[formName].resetFields()が動作しない。
-
vueによるダイアログの実装