UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue)

16 lines (14 loc) 421 B
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;