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.
- package/dist/vue.esm-browser.js +5 -2
- package/dist/vue.esm-browser.prod.js +1 -1
- package/dist/vue.global.js +5 -2
- package/dist/vue.global.prod.js +1 -1
- package/dist/vue.runtime.esm-browser.js +1 -1
- package/dist/vue.runtime.esm-browser.prod.js +1 -1
- package/dist/vue.runtime.global.js +1 -1
- package/dist/vue.runtime.global.prod.js +1 -1
- package/package.json +6 -6
package/dist/vue.esm-browser.js
CHANGED
|
@@ -9093,7 +9093,7 @@ function isMemoSame(cached, memo) {
|
|
|
9093
9093
|
return true;
|
|
9094
9094
|
}
|
|
9095
9095
|
|
|
9096
|
-
const version = "3.3.
|
|
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(
|
|
15279
|
+
createDOMCompilerError(
|
|
15280
|
+
63,
|
|
15281
|
+
node.loc
|
|
15282
|
+
)
|
|
15280
15283
|
);
|
|
15281
15284
|
context.removeNode();
|
|
15282
15285
|
}
|