vue統合kideditorリッチテキストの実現例コード
コマンド
このコマンドの役割は、domレンダリング後にトリガされます。vue以外のプラグインは、domが存在しなければ実行できない場合があります。
http://kindeditor.net/docs/option.html
以上はこの文章の全部の内容です。本文の内容は皆さんの学習や仕事に対して一定の参考学習価値を持ってほしいです。ありがとうございます。
このコマンドの役割は、domレンダリング後にトリガされます。vue以外のプラグインは、domが存在しなければ実行できない場合があります。
Vue.directive('loaded-callback', {
inserted: function (el, binding, vnode) {
binding.value(el, binding, vnode)
}
})
キンデトットの取り付け
npm install kindeditor
キンデトットコンポーネント
<template>
<div class="kindeditor">
<textarea class="form-control" ref="kindeditor" v-model="localValue" name="content" v-loaded-callback='initKindeditor'></textarea>
</div>
</template>
<script>
import '../../../../../node_modules/kindeditor/kindeditor-all.js'
import '../../../../../node_modules/kindeditor/lang/zh-CN.js'
import '../../../../../node_modules/kindeditor/themes/default/default.css'
export default {
name: 'kindeditor',
props: ['options', 'value'],
data () {
return {
localValue: ''
}
},
watch: {
localValue: 'updateValue',
value: 'setDefault'
},
created () {
this.setDefault()
},
methods: {
initKindeditor () {
var _this = this
//
var options = {
uploadJson: 'upload/image',
width: '100%',
afterChange () {
_this.localValue = this.html()
}
}
//
if (_this.options) {
for(var i in _this.options){
options[i] = _this.options[i]
}
}
KindEditor.create(_this.$refs.kindeditor,options);
},
//
setDefault () {
this.localValue = this.value
},
//
updateValue () {
this.$emit('input',this.localValue)
}
}
}
</script>
使い方
<kindeditor :options="options" v-model="content"></kindeditor>
options参考http://kindeditor.net/docs/option.html
以上はこの文章の全部の内容です。本文の内容は皆さんの学習や仕事に対して一定の参考学習価値を持ってほしいです。ありがとうございます。