UNPKG

ue3

Version:

ue3 build your own vue for learning.

10 lines (8 loc) 252 B
import { VNode } from "./vnode"; export const VTypeText = Symbol(); export const VTypeComment = Symbol(); export const Fragment = Symbol(); export interface VHTMLElement extends HTMLElement { _vnode: VNode | null; _vei: Record<string, any>; }