primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue)
16 lines (14 loc) • 421 B
TypeScript
import Vue, { VNode } from 'vue';
declare class Editor extends Vue {
value?: string;
placeholder?: string;
readonly?: boolean;
formats?: any[];
editorStyle?: string;
$emit(eventName: 'input', event: string): this;
$emit(eventName: 'text-change', e: { htmlValue: string, textValue: any, delta: any, source: string}): this;
$slot: {
toolbar: VNode[];
}
}
export default Editor;