vue源码系列教程(vue使用引用库中的方法附源码)
类别:编程学习 浏览量:910
时间:2021-10-04 01:59:04 vue源码系列教程
vue使用引用库中的方法附源码monaco-editor-vue的官方源码如下
Index.js
import * as monaco from 'monaco-editor/esm/vs/editor/editor.api'; function noop() { } export { monaco }; export default { name: 'MonacoEditor', props: { diffEditor: { type: Boolean, default: false }, //是否使用diff模式 width: {type: [String, Number], default: '100%'}, height: {type: [String, Number], default: '100%'}, original: String, //只有在diff模式下有效 value: String, language: {type: String, default: 'javascript'}, theme: {type: String, default: 'vs'}, options: {type: Object, default() {return {};}}, editorMounted: {type: Function, default: noop}, editorBeforeMount: {type: Function, default: noop} }, watch: { options: { deep: true, handler(options) { this.editor && this.editor.updateOptions(options); } }, value() { this.editor && this.value !== this._getValue() && this._setValue(this.value); }, language() { if(!this.editor) return; if(this.diffEditor){ //diff模式下更新language const { original, modified } = this.editor.getModel(); monaco.editor.setModelLanguage(original, this.language); monaco.editor.setModelLanguage(modified, this.language); }else monaco.editor.setModelLanguage(this.editor.getModel(), this.language); }, theme() { this.editor && monaco.editor.setTheme(this.theme); }, style() { this.editor && this.$nextTick(() => { this.editor.layout(); }); } }, computed: { style() { return { width: !/^\d+$/.test(this.width) ? this.width : `${this.width}px`, height: !/^\d+$/.test(this.height) ? this.height : `${this.height}px` } } }, mounted () { this.initMonaco(); }, beforeDestroy() { this.editor && this.editor.dispose(); }, render (h) { return ( <li class="monaco_editor_container" style={this.style}></li> ); }, methods: { initMonaco() { const { value, language, theme, options } = this; Object.assign(options, this._editorBeforeMount()); //编辑器初始化前 this.editor = monaco.editor[this.diffEditor ? 'createDiffEditor' : 'create'](this.$el, { value: value, language: language, theme: theme, ...options }); this.diffEditor && this._setModel(this.value, this.original); this._editorMounted(this.editor); //编辑器初始化后 }, _getEditor() { if(!this.editor) return null; return this.diffEditor ? this.editor.modifiedEditor : this.editor; }, _setModel(value, original) { //diff模式下设置model const { language } = this; const originalModel = monaco.editor.createModel(original, language); const modifiedModel = monaco.editor.createModel(value, language); this.editor.setModel({ original: originalModel, modified: modifiedModel }); }, _setValue(value) { let editor = this._getEditor(); if(editor) return editor.setValue(value); }, _getValue() { let editor = this._getEditor(); if(!editor) return ''; return editor.getValue(); }, _editorBeforeMount() { const options = this.editorBeforeMount(monaco); return options || {}; }, _editorMounted(editor) { this.editorMounted(editor, monaco); if(this.diffEditor){ editor.onDidUpdateDiff((event) => { const value = this._getValue(); this._emitChange(value, event); }); }else{ editor.onDidChangeModelContent(event => { const value = this._getValue(); this._emitChange(value, event); }); } }, _emitChange(value, event) { this.$emit('change', value, event); this.$emit('input', value); } } }
使用了vue想使用如上库中的_getValue
方法怎么调呢?
定义ref=“”,使用this.$refs.exampleEditor._setValue('')
参考如下代码
test.vue
<template> <li> <MonacoEditor ref="exampleEditor" width="100%" height="300" theme="vs-dark" language="javascript" :options="options" @change="codeInput" /> </li> </template> <script> import MonacoEditor from 'monaco-editor-vue' export default { components: { MonacoEditor }, data() { return { } }, beforeCreate() { }, mounted() { }, methods: { this.$refs.exampleEditor._setValue('') } }
到此这篇关于vue使用引用库中的方法附源码的文章就介绍到这了,更多相关vue使用引用库内容请搜索开心学习网以前的文章或继续浏览下面的相关文章希望大家以后多多支持开心学习网!
您可能感兴趣
- vue设置div大小(Vue实现div滚轮放大缩小)
- vue 手机端tab切换页面不刷新(vue Tab切换以及缓存页面处理的几种方式)
- vue身份验证(详解vue身份认证管理和租户管理)
- vue组件之间的通信(超详细的vue组件间通信总结)
- vue开发的购物车0.1加0.2(vue实现可改变购物数量的购物车)
- vue组件开发步骤(解析如何自动化生成vue组件文档)
- vue pdf预览插件(Vue-pdf实现在线预览PDF文件)
- vue指令使用技巧(Vue指令工作原理实现方法)
- vue elementui 按钮样式修改(vue+elementui 实现新增和修改共用一个弹框的完整代码)
- vue怎么操作表格(如何在在Vue3中使用markdown 编辑器组件)
- vue加element ui弹窗(Vue中ElementUI分页组件Pagination的使用方法)
- vuex怎么使用数据(vuex的辅助函数该如何使用)
- vueassets文件路径(vue如何根据url下载非同源文件)
- vue怎么编写规则(vue使用节流函数的踩坑实例指南)
- vue 为什么要使用key(详解vue中v-for的key唯一性)
- vue实现树形结构菜单(vue递归实现三级菜单)
- 泰国旅游攻略(泰国旅游攻略必去景点)
- 越难春卷(越难春卷皮怎么用)
- 休闲VS新古典 办公家居简约设计(办公家居简约设计)
- 15个新成 园 位置公布 深圳龙岗2022年共建花园建设又有大动作(15个新成园位置公布)
- 记者手记 书记带我去 巡街(记者手记书记带我去)
- 富士胶片集团将向土耳其东南部地震灾民捐赠5000万日元 | 美通社(富士胶片集团将向土耳其东南部地震灾民捐赠5000万日元)
热门推荐
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9