-
Notifications
You must be signed in to change notification settings - Fork 0
JMarkdownEidtor
xinwu-yang edited this page Mar 1, 2023
·
1 revision
一个markdown编辑器组件。
使用v-decorator需要给其赋值id属性,属性值和v-decorator保持一致。
<template>
<j-markdown-editor v-model="testFieldName"></j-markdown-editor>
<j-markdown-editor v-decorator="['testFieldName', { initialValue: '' }]" id="testFieldName"></j-markdown-editor>
</template>
<script>
export default {
data() {
return {
testFieldName: ''
}
}
}
</script>
属性 | 说明 | 类型 | 必填 | 默认值 |
---|---|---|---|---|
value(v-model) | 值 | string | ||
id | 编辑器id | string | ||
options | 编辑器设置,参考codemirror | object | ||
height | 编辑器高度 | string | '300px' | |
language | 语言,参考codemirror | string | 'zh-CN' |
事件名称 | 说明 | 回调参数 |
---|---|---|
change | 值变化时调用 | function(value) |