@shuyun-ep-team/template-editor
v1.0.0
Published
标准的模板编辑器,适用于 短信模板、微信模板 编辑
Downloads
9
Keywords
Readme
@shuyun-ep-team/template-editor
基于CodeMirror
实现的模板编辑器,一般用来作为短信编辑器或者微信模板编辑器使用。
Features:
- 配置简单易用
- 支持自定义的占位符(Placeholder)
- 原生
Javascript
实现,可以任意框架中使用,比如React
、Vue
、Angular
安装
npm i @shuyun-ep-team/template-editor
使用
import { TemplateEditor } from '@shuyun-ep-team/template-editor';
const editor = new TemplateEditor(container, {
initialValue: 'Dear {{nickname}}...',
placeholders: []
});