UNPKG

tiptap

Version:

A rich-text editor for Vue.js

26 lines (18 loc) 291 B
import Extension from './Extension' export default class Node extends Extension { constructor(options = {}) { super(options) } get type() { return 'node' } get view() { return null } get schema() { return null } command() { return () => {} } }