vue 2.7.9 → 2.7.11
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/README.md +11 -1
- package/dist/vue.common.dev.js +11622 -11589
- package/dist/vue.common.prod.js +3 -3
- package/dist/vue.esm.browser.js +11601 -11568
- package/dist/vue.esm.browser.min.js +3 -3
- package/dist/vue.esm.js +11751 -11718
- package/dist/vue.js +11665 -11632
- package/dist/vue.min.js +3 -3
- package/dist/vue.runtime.common.dev.js +8416 -8383
- package/dist/vue.runtime.common.prod.js +3 -3
- package/dist/vue.runtime.esm.js +8543 -8510
- package/dist/vue.runtime.js +8494 -8461
- package/dist/vue.runtime.min.js +3 -3
- package/dist/vue.runtime.mjs +76 -76
- package/package.json +5 -5
- package/packages/compiler-sfc/dist/compiler-sfc.d.ts +5 -0
- package/packages/compiler-sfc/dist/compiler-sfc.js +9650 -9648
- package/packages/compiler-sfc/node_modules/.bin/parser +2 -2
- package/packages/compiler-sfc/node_modules/.bin/sass +2 -2
- package/packages/compiler-sfc/package.json +2 -2
- package/packages/compiler-sfc/src/compileScript.ts +25 -21
- package/packages/compiler-sfc/src/index.ts +7 -0
- package/packages/compiler-sfc/src/parseComponent.ts +2 -2
- package/packages/compiler-sfc/src/stylePlugins/scoped.ts +9 -10
- package/packages/compiler-sfc/test/__snapshots__/compileScript.spec.ts.snap +1 -1
- package/src/core/instance/init.ts +7 -2
- package/src/core/instance/lifecycle.ts +9 -2
- package/src/core/instance/state.ts +2 -7
- package/src/core/observer/dep.ts +26 -6
- package/src/core/observer/index.ts +9 -10
- package/src/core/observer/scheduler.ts +2 -1
- package/src/shared/util.ts +7 -1
- package/src/v3/reactivity/reactive.ts +7 -2
- package/src/v3/reactivity/readonly.ts +5 -5
- package/types/options.d.ts +12 -5
- package/types/vnode.d.ts +11 -1
- package/types/vue.d.ts +5 -0
package/README.md
CHANGED
|
@@ -17,9 +17,19 @@ You are looking at the repository for Vue 2. The repo for Vue 3 is [vuejs/core](
|
|
|
17
17
|
|
|
18
18
|
Vue.js is an MIT-licensed open source project with its ongoing development made possible entirely by the support of these awesome [backers](https://github.com/vuejs/core/blob/main/BACKERS.md). If you'd like to join them, please consider [ sponsor Vue's development](https://vuejs.org/sponsor/).
|
|
19
19
|
|
|
20
|
+
<p align="center">
|
|
21
|
+
<h3 align="center">Special Sponsor</h3>
|
|
22
|
+
</p>
|
|
23
|
+
|
|
24
|
+
<p align="center">
|
|
25
|
+
<a target="_blank" href="https://github.com/appwrite/appwrite">
|
|
26
|
+
<img alt="special sponsor appwrite" src="https://sponsors.vuejs.org/images/appwrite.svg" width="300">
|
|
27
|
+
</a>
|
|
28
|
+
</p>
|
|
29
|
+
|
|
20
30
|
<p align="center">
|
|
21
31
|
<a target="_blank" href="https://vuejs.org/sponsor/">
|
|
22
|
-
<img alt="sponsors" src="https://sponsors.vuejs.org/sponsors.svg">
|
|
32
|
+
<img alt="sponsors" src="https://sponsors.vuejs.org/sponsors.svg?v2">
|
|
23
33
|
</a>
|
|
24
34
|
</p>
|
|
25
35
|
|