-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor #10999
Minor #10999
Commits on Feb 25, 2024
-
Refactor reactivity system to use version counting and doubly-linked …
…list tracking (vuejs#10397) Bug fixes close vuejs#10236 close vuejs#10069 PRs made stale by this one close vuejs#10290 close vuejs#10354 close vuejs#10189 close vuejs#9480
2Configuration menu - View commit details
-
Copy full SHA for 05eb4e0 - Browse repository at this point
Copy the full SHA 05eb4e0View commit details
Commits on Feb 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 58d827c - Browse repository at this point
Copy the full SHA 58d827cView commit details -
refactor(scheduler): use bitwise flags for scheduler jobs + optimize …
…queueJob (vuejs#10407) related: vuejs/vue-vapor#138
Configuration menu - View commit details
-
Copy full SHA for 55660b0 - Browse repository at this point
Copy the full SHA 55660b0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5d30366 - Browse repository at this point
Copy the full SHA 5d30366View commit details -
Configuration menu - View commit details
-
Copy full SHA for 72bde94 - Browse repository at this point
Copy the full SHA 72bde94View commit details -
Configuration menu - View commit details
-
Copy full SHA for 70196a4 - Browse repository at this point
Copy the full SHA 70196a4View commit details
Commits on Mar 5, 2024
-
feat(reactivity):
onEffectCleanup
APIref vuejs#10173 Instead of exposing `getCurrentEffect`, this version accepts a second argument to suppress the no-active-effect warning.
Configuration menu - View commit details
-
Copy full SHA for 2cc5615 - Browse repository at this point
Copy the full SHA 2cc5615View commit details
Commits on Mar 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ef2eaef - Browse repository at this point
Copy the full SHA ef2eaefView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a936aa - Browse repository at this point
Copy the full SHA 9a936aaView commit details
Commits on Apr 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for bb5c31e - Browse repository at this point
Copy the full SHA bb5c31eView commit details
Commits on Apr 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5f0c6e4 - Browse repository at this point
Copy the full SHA 5f0c6e4View commit details
Commits on Apr 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a084df1 - Browse repository at this point
Copy the full SHA a084df1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9fd1284 - Browse repository at this point
Copy the full SHA 9fd1284View commit details
Commits on Apr 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 85f3592 - Browse repository at this point
Copy the full SHA 85f3592View commit details
Commits on Apr 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 28841fe - Browse repository at this point
Copy the full SHA 28841feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c3a920 - Browse repository at this point
Copy the full SHA 0c3a920View commit details -
feat(transition): support directly nesting Teleport inside Transition (…
…vuejs#6548) close vuejs#5836
Configuration menu - View commit details
-
Copy full SHA for 0e6e3c7 - Browse repository at this point
Copy the full SHA 0e6e3c7View commit details -
types(defineComponent): support for GlobalComponents, typed Directive…
…s and respect `expose` on defineComponent (vuejs#3399) close vuejs#3367
Configuration menu - View commit details
-
Copy full SHA for 4cc9ca8 - Browse repository at this point
Copy the full SHA 4cc9ca8View commit details
Commits on Apr 27, 2024
-
feat(types): provide internal options for directly using user types i…
…n language tools (vuejs#10801)
Configuration menu - View commit details
-
Copy full SHA for 75c8cf6 - Browse repository at this point
Copy the full SHA 75c8cf6View commit details
Commits on Apr 29, 2024
-
feat(compiler-sfc): enable reactive props destructure by default
Also allow prohibiting usage via config. RFC: vuejs/rfcs#502
Configuration menu - View commit details
-
Copy full SHA for d2dac0e - Browse repository at this point
Copy the full SHA d2dac0eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5590ca3 - Browse repository at this point
Copy the full SHA 5590ca3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 801b8de - Browse repository at this point
Copy the full SHA 801b8deView commit details -
feat(runtime-core): add app.onUnmount() for registering cleanup funct…
…ions (vuejs#4619) close vuejs#4516
Configuration menu - View commit details
-
Copy full SHA for 582a3a3 - Browse repository at this point
Copy the full SHA 582a3a3View commit details
Commits on Apr 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 124c4ca - Browse repository at this point
Copy the full SHA 124c4caView commit details -
fix(types): fix compat with generated types that rely on CreateCompon…
…entPublicInstance close vuejs#10842
Configuration menu - View commit details
-
Copy full SHA for c146186 - Browse repository at this point
Copy the full SHA c146186View commit details
Commits on May 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9b82005 - Browse repository at this point
Copy the full SHA 9b82005View commit details -
Configuration menu - View commit details
-
Copy full SHA for eae0ccb - Browse repository at this point
Copy the full SHA eae0ccbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 908f70a - Browse repository at this point
Copy the full SHA 908f70aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 801666f - Browse repository at this point
Copy the full SHA 801666fView commit details
Commits on May 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b295cdf - Browse repository at this point
Copy the full SHA b295cdfView commit details
Commits on May 23, 2024
-
feat(core): implement ref function for creating reactive ref objects
This commit adds a new function called `ref` to the core of the codebase. The `ref` function allows developers to create reactive ref objects, which include a `value` property and a `reset` method. Internally, the `ref` function utilizes the existing `reactive` function to create the reactive object. This change addresses the need for an easier way to create reactive ref objects. Previously, developers had to manually implement this functionality, leading to code duplication and potential errors. With the `ref` function, creating reactive ref objects becomes simpler and more consistent. Details: - Define the `ref` function to create reactive ref objects - Include a `value` property in the ref object - Implement the `reset` method to reset the value property to its initial value Footer: - Closes: vuejs#674
Configuration menu - View commit details
-
Copy full SHA for 1c790c2 - Browse repository at this point
Copy the full SHA 1c790c2View commit details