当前组件库发布在 私有仓库中,仓库地址: http://10.43.219.188:4873/
// 设置仓库地址
npm config set registry http://10.43.219.188:4873
npm install --save hundun-pc-editor
// 导入组件库
import hundunPcEditor from 'hundun-pc-editor'
// 导入样式
import 'hundun-pc-editor/lib/hundun-pc-editor.css'
// 注册组件库
Vue.use(hundunPcEditor)
<div id="app">
<hundun-pc-editor v-model="value" upload-url="/api/file/upload" :preview="true" :html="true">
</hundun-pc-editor>
</div>
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
v-model | 绑定值 | String | - | - |
preview | 是否打开预览 | Boolean | true/false | true |
dsiabled | 是否禁用 | Boolean | true/false | false |
html | 是否打开HTML查看 | Boolean | true/false | true |
placeholder | 提示placeholder | String | - | - |
upload-url | 文件上传url | String | - | /api/file/upload |
custom-config | 自定义配置, 参考wangeditor | Object | - | - |