Permalink
Switch branches/tags
{{ refName }}
default
main
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Commits on Feb 4, 2023
Commits on Jan 12, 2023
Commits on Dec 27, 2022
Commits on Dec 14, 2022
-
Co-authored-by: 方恒 <[email protected]>
Commits on Dec 6, 2022
Commits on Nov 9, 2022
-
-
fix(reactivity): avoid using WeakMap for IE compatibility
Using a WeakMap polyfill isn't ideal because the reason we tried to use WeakMap was to work with non-extensible objects. However, WeakMap polyfill for non-extensible objects are non-weak and could lead to memory leaks. The trade-off is that we remove support for `readonly()` on non-extensible objects, which seems reasonable. close #12837
-
-
Commits on Oct 19, 2022
Commits on Oct 15, 2022
Commits on Oct 14, 2022
Commits on Oct 12, 2022
-
fix(types): style attribute svg (#12800)
Set style attribute on svg to use `StyleValue`
-
Commits on Oct 11, 2022
-
-
-
fix(setup): setup hook should be called before beforeCreate
fix #12802 Note this commit moves the initialization of injections and props to before the invocation of beforeCreate. This should not cause breakage because props and inject normalization has always been done before beforeCreate, so code that attempts to modifiy props/inject options inside beforeCreate should have never worked.
-
fix(compiler-sfc): export parseComponent for compat with fork-ts-chec…
…ker-webpack-plugin fix #12719
-
fix(sfc): prune returned bindings for non-TS as well
In Vue 3, pruning is only done for TS to produce valid code and tree-shaking is done by inlining the template for production. In Vue 2 we do not inline the template in production, so return binding pruning is needed in all cases. fix #12765
-