vue-codemirror6
Version:
CodeMirror6 Component for vue2 and vue3.
16 lines (15 loc) • 499 B
TypeScript
import { Component, VNode, VNodeProps } from 'vue-demi';
interface Options extends VNodeProps {
class?: string;
domProps?: VNodeProps;
on?: Record<string, () => void>;
props?: VNodeProps;
style?: string;
'aria-hidden'?: string;
}
/**
* hDemi function.
*/
export default function h(type: string | Component, options?: Options, children?: VNode | VNode[] | null): VNode;
export declare const slot: (defaultSlots: (() => VNode[]) | VNode[] | undefined) => VNode[];
export {};