vue 3.3.1 → 3.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9093,7 +9093,7 @@ function isMemoSame(cached, memo) {
9093
9093
  return true;
9094
9094
  }
9095
9095
 
9096
- const version = "3.3.1";
9096
+ const version = "3.3.2";
9097
9097
  const ssrUtils = null;
9098
9098
  const resolveFilter = null;
9099
9099
  const compatUtils = null;
@@ -15276,7 +15276,10 @@ function hasMultipleChildren(node) {
15276
15276
  const ignoreSideEffectTags = (node, context) => {
15277
15277
  if (node.type === 1 && node.tagType === 0 && (node.tag === "script" || node.tag === "style")) {
15278
15278
  context.onError(
15279
- createDOMCompilerError(63, node.loc)
15279
+ createDOMCompilerError(
15280
+ 63,
15281
+ node.loc
15282
+ )
15280
15283
  );
15281
15284
  context.removeNode();
15282
15285
  }