能夠直接從Ueditor的官方網站:ueditor.baidu.com/website/dow… 下載本身對應的資源-我下載的是jsp最新版本。css
import "../static/UE/ueditor.config.js";
import "../static/UE/ueditor.all.min.js";
import "../static/UE/lang/zh-cn/zh-cn.js";
import "../static/UE/ueditor.parse.min.js";
複製代碼
/**
* 編輯器資源文件根路徑。它所表示的含義是:以編輯器實例化頁面爲當前路徑,指向編輯器資源文件(即dialog等文件夾)的路徑。
* 鑑於不少同窗在使用編輯器的時候出現的種種路徑問題,此處強烈建議你們使用"相對於網站根目錄的相對路徑"進行配置。
* "相對於網站根目錄的相對路徑"也就是以斜槓開頭的形如"/myProject/ueditor/"這樣的路徑。
* 若是站點中有多個不在同一層級的頁面須要實例化編輯器,且引用了同一UEditor的時候,此處的URL可能不適用於每一個頁面的編輯器。
* 所以,UEditor提供了針對不一樣頁面的編輯器可單獨配置的根路徑,具體來講,在須要實例化編輯器的頁面最頂部寫上以下代碼便可。固然,須要令此處的URL等於對應的配置。
* window.UEDITOR_HOME_URL = "/xxxx/xxxx/";
*/
window.UEDITOR_HOME_URL = "/static/UE/";
複製代碼
<template>
<div>
<div id="editor"></div>
</div>
</template>
<script>
export default {
data() {
return {
editor: null
};
},
components: {},
computed: {},
mounted() {
let that = this;
this.editor = UE.getEditor("editor", {
initialFrameWidth: "100%",
initialFrameHeight: "240"
});
that.editor.ready(() => {
that.editor.addListener("contentChange", function() {
that.editor.ready(() => {
let text = that.editor.getContent();
that.$emit("change", text);
});
});
});
},
created() {},
beforeDestroy() {
this.editor.destroy();
},
methods: {
setData(text) {
var that = this;
this.editor.ready(() => {
this.editor.setContent(text);
});
}
}
};
</script>
<style lang='scss' scoped>
</style>
複製代碼
個人線上是 http://---.com ---> /static/UE/html
域名是 http://---.com/damin/ ---> /damin/static/UE/web
這個網上有人說ZeroClipboard.js中修改下就好了,只是記錄下,目前沒試過!後端
if (typeof define === "function" && define.amd) {
define(function () {
return ZeroClipboard;
});
} else if (typeof module === "object" && module && typeof module.exports === "object" && module.exports) {
module.exports = ZeroClipboard;
}else{
window.ZeroClipboard = ZeroClipboard;
}
複製代碼
改成bash
if (typeof define === "function" && define.amd) {
define(function () {
return ZeroClipboard;
});
} else if (typeof module === "object" && module && typeof module.exports === "object" && module.exports) {
module.exports = ZeroClipboard;
}
window.ZeroClipboard = ZeroClipboard;
複製代碼