core icon indicating copy to clipboard operation
core copied to clipboard

feat(runtime-vapor): expose isVaporComponent

Open zhiyuanzmj opened this issue 6 months ago • 3 comments

To determine if a node is a block for vue-jsx-vapor.

function normalizeNode(node: any): Block {
  if (node instanceof Node || isFragment(node) || isVaporComponent(node)){
    return node
  } else {
    // ...
  }
}

zhiyuanzmj avatar May 11 '25 09:05 zhiyuanzmj