primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue)
14 lines (13 loc) • 404 B
TypeScript
import Vue, { VNode } from 'vue';
export 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[];
}
}