|
@ -10,7 +10,7 @@
|
10
|
10
|
</div>
|
11
|
11
|
</el-alert>
|
12
|
12
|
|
13
|
|
<script id="J_ueditorBox" class="ueditor-box" type="text/plain" style="width: 100%; height: 260px;">hello world!</script>
|
|
13
|
<script :id="ueId" class="ueditor-box" type="text/plain" style="width: 100%; height: 260px;">hello world!</script>
|
14
|
14
|
|
15
|
15
|
<!-- 获取内容 -->
|
16
|
16
|
<p><el-button @click="getContent()">获得内容</el-button></p>
|
|
@ -32,12 +32,13 @@
|
32
|
32
|
data () {
|
33
|
33
|
return {
|
34
|
34
|
ue: null,
|
|
35
|
ueId: `J_ueditorBox_${new Date().getTime()}`,
|
35
|
36
|
ueContent: '',
|
36
|
37
|
dialogVisible: false
|
37
|
38
|
}
|
38
|
39
|
},
|
39
|
40
|
mounted () {
|
40
|
|
this.ue = ueditor.getEditor('J_ueditorBox', {
|
|
41
|
this.ue = ueditor.getEditor(this.ueId, {
|
41
|
42
|
// serverUrl: '', // 服务器统一请求接口路径
|
42
|
43
|
zIndex: 3000
|
43
|
44
|
})
|