vue 2.6.13 → 2.7.0-alpha.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/README.md +17 -295
- package/compiler-sfc/index.d.ts +1 -0
- package/compiler-sfc/index.js +1 -0
- package/compiler-sfc/index.mjs +1 -0
- package/compiler-sfc/package.json +5 -0
- package/dist/vue.common.dev.js +11481 -11946
- package/dist/vue.common.prod.js +8 -3
- package/dist/vue.esm.browser.js +11321 -12011
- package/dist/vue.esm.browser.min.js +8 -3
- package/dist/vue.esm.js +11476 -11984
- package/dist/vue.js +11484 -11949
- package/dist/vue.min.js +8 -3
- package/dist/vue.runtime.common.dev.js +8427 -8421
- package/dist/vue.runtime.common.prod.js +8 -3
- package/dist/vue.runtime.esm.js +8436 -8454
- package/dist/vue.runtime.js +8430 -8424
- package/dist/vue.runtime.min.js +8 -3
- package/package.json +88 -111
- package/packages/compiler-sfc/dist/compiler-sfc.js +7 -0
- package/packages/compiler-sfc/node_modules/.bin/parser +17 -0
- package/packages/compiler-sfc/node_modules/.bin/sass +17 -0
- package/packages/compiler-sfc/package.json +30 -0
- package/src/compiler/{codeframe.js → codeframe.ts} +9 -7
- package/src/compiler/codegen/{events.js → events.ts} +21 -41
- package/src/compiler/codegen/{index.js → index.ts} +146 -136
- package/src/compiler/{create-compiler.js → create-compiler.ts} +26 -18
- package/src/compiler/directives/bind.ts +9 -0
- package/src/compiler/directives/{index.js → index.ts} +0 -2
- package/src/compiler/directives/{model.js → model.ts} +15 -18
- package/src/compiler/directives/{on.js → on.ts} +3 -4
- package/src/compiler/{error-detector.js → error-detector.ts} +61 -31
- package/src/compiler/{helpers.js → helpers.ts} +73 -61
- package/src/compiler/{index.js → index.ts} +2 -3
- package/src/compiler/{optimizer.js → optimizer.ts} +30 -23
- package/src/compiler/parser/{entity-decoder.js → entity-decoder.ts} +1 -3
- package/src/compiler/parser/{filter-parser.js → filter-parser.ts} +43 -24
- package/src/compiler/parser/{html-parser.js → html-parser.ts} +50 -29
- package/src/compiler/parser/{index.js → index.ts} +190 -172
- package/src/compiler/parser/{text-parser.js → text-parser.ts} +8 -9
- package/src/compiler/{to-function.js → to-function.ts} +27 -22
- package/src/core/components/{index.js → index.ts} +0 -0
- package/src/core/components/{keep-alive.js → keep-alive.ts} +42 -30
- package/src/core/{config.js → config.ts} +28 -30
- package/src/core/global-api/{assets.js → assets.ts} +8 -7
- package/src/core/global-api/{extend.js → extend.ts} +10 -13
- package/src/core/global-api/{index.js → index.ts} +4 -5
- package/src/core/global-api/{mixin.js → mixin.ts} +2 -3
- package/src/core/global-api/use.ts +23 -0
- package/src/core/{index.js → index.ts} +1 -1
- package/src/core/instance/{events.js → events.ts} +41 -24
- package/src/core/instance/{index.js → index.ts} +9 -5
- package/src/core/instance/{init.js → init.ts} +26 -15
- package/src/core/instance/inject.ts +72 -0
- package/src/core/instance/{lifecycle.js → lifecycle.ts} +86 -44
- package/src/core/instance/{proxy.js → proxy.ts} +29 -24
- package/src/core/instance/render-helpers/{bind-dynamic-keys.js → bind-dynamic-keys.ts} +6 -5
- package/src/core/instance/render-helpers/{bind-object-listeners.js → bind-object-listeners.ts} +4 -8
- package/src/core/instance/render-helpers/{bind-object-props.js → bind-object-props.ts} +12 -17
- package/src/core/instance/render-helpers/{check-keycodes.js → check-keycodes.ts} +5 -7
- package/src/core/instance/render-helpers/{index.js → index.ts} +1 -3
- package/src/core/instance/render-helpers/{render-list.js → render-list.ts} +12 -13
- package/src/core/instance/render-helpers/{render-slot.js → render-slot.ts} +10 -11
- package/src/core/instance/render-helpers/{render-static.js → render-static.ts} +7 -10
- package/src/core/instance/render-helpers/{resolve-filter.js → resolve-filter.ts} +1 -3
- package/src/core/instance/render-helpers/{resolve-scoped-slots.js → resolve-scoped-slots.ts} +11 -8
- package/src/core/instance/render-helpers/{resolve-slots.js → resolve-slots.ts} +12 -11
- package/src/core/instance/{render.js → render.ts} +66 -29
- package/src/core/instance/{state.js → state.ts} +100 -83
- package/src/core/observer/{array.js → array.ts} +11 -2
- package/src/core/observer/{dep.js → dep.ts} +37 -15
- package/src/core/observer/{index.js → index.ts} +137 -71
- package/src/core/observer/{scheduler.js → scheduler.ts} +42 -43
- package/src/core/observer/{traverse.js → traverse.ts} +10 -7
- package/src/core/observer/{watcher.js → watcher.ts} +88 -60
- package/src/core/util/{debug.js → debug.ts} +38 -34
- package/src/core/util/{env.js → env.ts} +27 -30
- package/src/core/util/{error.js → error.ts} +12 -14
- package/src/core/util/{index.js → index.ts} +0 -2
- package/src/core/util/{lang.js → lang.ts} +6 -7
- package/src/core/util/{next-tick.js → next-tick.ts} +16 -10
- package/src/core/util/{options.js → options.ts} +119 -114
- package/src/core/util/{perf.js → perf.ts} +5 -1
- package/src/core/util/{props.js → props.ts} +54 -50
- package/src/core/vdom/{create-component.js → create-component.ts} +51 -50
- package/src/core/vdom/{create-element.js → create-element.ts} +49 -43
- package/src/core/vdom/{create-functional-component.js → create-functional-component.ts} +52 -27
- package/src/core/vdom/helpers/{extract-props.js → extract-props.ts} +18 -18
- package/src/core/vdom/helpers/{get-first-component-child.js → get-first-component-child.ts} +6 -5
- package/src/core/vdom/helpers/{index.js → index.ts} +0 -2
- package/src/core/vdom/helpers/is-async-placeholder.ts +6 -0
- package/src/core/vdom/helpers/{merge-hook.js → merge-hook.ts} +7 -5
- package/src/core/vdom/helpers/{normalize-children.js → normalize-children.ts} +26 -16
- package/src/core/vdom/helpers/{normalize-scoped-slots.js → normalize-scoped-slots.ts} +23 -17
- package/src/core/vdom/helpers/{resolve-async-component.js → resolve-async-component.ts} +29 -37
- package/src/core/vdom/helpers/update-listeners.ts +101 -0
- package/src/core/vdom/modules/{directives.js → directives.ts} +20 -14
- package/src/core/vdom/modules/index.ts +4 -0
- package/src/core/vdom/modules/template-ref.ts +96 -0
- package/src/core/vdom/{patch.js → patch.ts} +239 -138
- package/src/core/vdom/{vnode.js → vnode.ts} +36 -31
- package/src/global.d.ts +15 -0
- package/src/platforms/web/compiler/directives/html.ts +8 -0
- package/src/platforms/web/compiler/directives/{index.js → index.ts} +0 -0
- package/src/platforms/web/compiler/directives/{model.js → model.ts} +47 -41
- package/src/platforms/web/compiler/directives/{text.js → text.ts} +2 -3
- package/src/platforms/web/compiler/{index.js → index.ts} +0 -2
- package/src/platforms/web/compiler/modules/{class.js → class.ts} +10 -15
- package/src/platforms/web/compiler/modules/{index.js → index.ts} +1 -5
- package/src/platforms/web/compiler/modules/{model.js → model.ts} +6 -11
- package/src/platforms/web/compiler/modules/{style.js → style.ts} +9 -14
- package/src/platforms/web/compiler/{options.js → options.ts} +1 -2
- package/src/platforms/web/compiler/{util.js → util.ts} +5 -7
- package/src/platforms/web/entry-compiler-sfc.ts +1 -0
- package/src/platforms/web/{entry-compiler.js → entry-compiler.ts} +1 -3
- package/src/platforms/web/{entry-runtime.js → entry-runtime-esm.ts} +2 -2
- package/src/platforms/web/entry-runtime-with-compiler-esm.ts +5 -0
- package/src/platforms/web/entry-runtime-with-compiler.ts +10 -0
- package/src/platforms/web/entry-runtime.ts +7 -0
- package/src/platforms/web/runtime/{class-util.js → class-util.ts} +2 -4
- package/src/platforms/web/runtime/components/{index.js → index.ts} +0 -0
- package/src/platforms/web/runtime/components/{transition-group.js → transition-group.ts} +59 -46
- package/src/platforms/web/runtime/components/{transition.js → transition.ts} +43 -36
- package/src/platforms/web/runtime/directives/{index.js → index.ts} +0 -0
- package/src/platforms/web/runtime/directives/{model.js → model.ts} +22 -21
- package/src/platforms/web/runtime/directives/{show.js → show.ts} +11 -10
- package/src/platforms/web/runtime/{index.js → index.ts} +9 -10
- package/src/platforms/web/runtime/modules/{attrs.js → attrs.ts} +12 -16
- package/src/platforms/web/runtime/modules/{class.js → class.ts} +7 -18
- package/src/platforms/web/runtime/modules/{dom-props.js → dom-props.ts} +24 -17
- package/src/platforms/web/runtime/modules/{events.js → events.ts} +22 -15
- package/src/platforms/web/runtime/modules/{index.js → index.ts} +1 -8
- package/src/platforms/web/runtime/modules/{style.js → style.ts} +24 -13
- package/src/platforms/web/runtime/modules/{transition.js → transition.ts} +61 -63
- package/src/platforms/web/runtime/node-ops.ts +66 -0
- package/src/platforms/web/runtime/{patch.js → patch.ts} +0 -2
- package/src/platforms/web/runtime/{transition-util.js → transition-util.ts} +63 -38
- package/src/platforms/web/{entry-runtime-with-compiler.js → runtime-with-compiler.ts} +28 -19
- package/src/platforms/web/util/{attrs.js → attrs.ts} +18 -14
- package/src/platforms/web/util/{class.js → class.ts} +23 -21
- package/src/platforms/web/util/{compat.js → compat.ts} +4 -4
- package/src/platforms/web/util/{element.js → element.ts} +21 -22
- package/src/platforms/web/util/{index.js → index.ts} +2 -6
- package/src/platforms/web/util/{style.js → style.ts} +12 -12
- package/src/sfc/{parser.js → parser.ts} +18 -15
- package/src/shared/{constants.js → constants.ts} +2 -6
- package/src/shared/{util.js → util.ts} +78 -55
- package/src/types/compiler.ts +224 -0
- package/src/types/component.ts +209 -0
- package/src/types/global-api.ts +37 -0
- package/src/types/modules.d.ts +15 -0
- package/src/types/options.ts +120 -0
- package/src/types/ssr.ts +27 -0
- package/src/types/utils.ts +3 -0
- package/src/types/vnode.ts +127 -0
- package/src/v3/apiInject.ts +66 -0
- package/src/v3/apiLifecycle.ts +53 -0
- package/src/v3/apiSetup.ts +161 -0
- package/src/v3/apiWatch.ts +355 -0
- package/src/v3/currentInstance.ts +23 -0
- package/src/v3/debug.ts +21 -0
- package/src/v3/h.ts +18 -0
- package/src/v3/index.ts +77 -0
- package/src/v3/reactivity/computed.ts +100 -0
- package/src/v3/reactivity/effect.ts +20 -0
- package/src/v3/reactivity/effectScope.ts +134 -0
- package/src/v3/reactivity/operations.ts +14 -0
- package/src/v3/reactivity/reactive.ts +123 -0
- package/src/v3/reactivity/readonly.ts +121 -0
- package/src/v3/reactivity/ref.ts +249 -0
- package/types/index.d.ts +10 -13
- package/types/options.d.ts +265 -132
- package/types/plugin.d.ts +4 -4
- package/types/umd.d.ts +47 -27
- package/types/v3-generated.d.ts +389 -0
- package/types/v3.d.ts +16 -0
- package/types/vnode.d.ts +70 -57
- package/types/vue.d.ts +292 -88
- package/dist/README.md +0 -122
- package/src/compiler/directives/bind.js +0 -11
- package/src/core/global-api/use.js +0 -23
- package/src/core/instance/inject.js +0 -73
- package/src/core/vdom/helpers/is-async-placeholder.js +0 -5
- package/src/core/vdom/helpers/update-listeners.js +0 -95
- package/src/core/vdom/modules/index.js +0 -7
- package/src/core/vdom/modules/ref.js +0 -45
- package/src/platforms/web/compiler/directives/html.js +0 -9
- package/src/platforms/web/entry-server-basic-renderer.js +0 -13
- package/src/platforms/web/entry-server-renderer.js +0 -27
- package/src/platforms/web/runtime/node-ops.js +0 -59
- package/src/platforms/web/server/compiler.js +0 -11
- package/src/platforms/web/server/directives/index.js +0 -7
- package/src/platforms/web/server/directives/model.js +0 -44
- package/src/platforms/web/server/directives/show.js +0 -12
- package/src/platforms/web/server/modules/attrs.js +0 -67
- package/src/platforms/web/server/modules/class.js +0 -11
- package/src/platforms/web/server/modules/dom-props.js +0 -50
- package/src/platforms/web/server/modules/index.js +0 -11
- package/src/platforms/web/server/modules/style.js +0 -41
- package/src/platforms/web/server/util.js +0 -101
- package/src/platforms/weex/compiler/directives/index.js +0 -5
- package/src/platforms/weex/compiler/directives/model.js +0 -33
- package/src/platforms/weex/compiler/index.js +0 -52
- package/src/platforms/weex/compiler/modules/append.js +0 -27
- package/src/platforms/weex/compiler/modules/class.js +0 -74
- package/src/platforms/weex/compiler/modules/index.js +0 -13
- package/src/platforms/weex/compiler/modules/props.js +0 -37
- package/src/platforms/weex/compiler/modules/recycle-list/component-root.js +0 -13
- package/src/platforms/weex/compiler/modules/recycle-list/component.js +0 -16
- package/src/platforms/weex/compiler/modules/recycle-list/index.js +0 -60
- package/src/platforms/weex/compiler/modules/recycle-list/recycle-list.js +0 -50
- package/src/platforms/weex/compiler/modules/recycle-list/text.js +0 -23
- package/src/platforms/weex/compiler/modules/recycle-list/v-bind.js +0 -21
- package/src/platforms/weex/compiler/modules/recycle-list/v-for.js +0 -33
- package/src/platforms/weex/compiler/modules/recycle-list/v-if.js +0 -63
- package/src/platforms/weex/compiler/modules/recycle-list/v-on.js +0 -25
- package/src/platforms/weex/compiler/modules/recycle-list/v-once.js +0 -19
- package/src/platforms/weex/compiler/modules/style.js +0 -87
- package/src/platforms/weex/entry-compiler.js +0 -2
- package/src/platforms/weex/entry-framework.js +0 -187
- package/src/platforms/weex/entry-runtime-factory.js +0 -6
- package/src/platforms/weex/runtime/components/index.js +0 -9
- package/src/platforms/weex/runtime/components/richtext.js +0 -82
- package/src/platforms/weex/runtime/components/transition-group.js +0 -148
- package/src/platforms/weex/runtime/components/transition.js +0 -9
- package/src/platforms/weex/runtime/directives/index.js +0 -2
- package/src/platforms/weex/runtime/index.js +0 -42
- package/src/platforms/weex/runtime/modules/attrs.js +0 -44
- package/src/platforms/weex/runtime/modules/class.js +0 -76
- package/src/platforms/weex/runtime/modules/events.js +0 -54
- package/src/platforms/weex/runtime/modules/index.js +0 -13
- package/src/platforms/weex/runtime/modules/style.js +0 -84
- package/src/platforms/weex/runtime/modules/transition.js +0 -270
- package/src/platforms/weex/runtime/node-ops.js +0 -91
- package/src/platforms/weex/runtime/patch.js +0 -16
- package/src/platforms/weex/runtime/recycle-list/render-component-template.js +0 -34
- package/src/platforms/weex/runtime/recycle-list/virtual-component.js +0 -136
- package/src/platforms/weex/runtime/text-node.js +0 -9
- package/src/platforms/weex/util/element.js +0 -52
- package/src/platforms/weex/util/index.js +0 -40
- package/src/platforms/weex/util/parser.js +0 -60
- package/src/server/bundle-renderer/create-bundle-renderer.js +0 -151
- package/src/server/bundle-renderer/create-bundle-runner.js +0 -150
- package/src/server/bundle-renderer/source-map-support.js +0 -45
- package/src/server/create-basic-renderer.js +0 -37
- package/src/server/create-renderer.js +0 -152
- package/src/server/optimizing-compiler/codegen.js +0 -264
- package/src/server/optimizing-compiler/index.js +0 -20
- package/src/server/optimizing-compiler/modules.js +0 -124
- package/src/server/optimizing-compiler/optimizer.js +0 -141
- package/src/server/optimizing-compiler/runtime-helpers.js +0 -150
- package/src/server/render-context.js +0 -130
- package/src/server/render-stream.js +0 -95
- package/src/server/render.js +0 -437
- package/src/server/template-renderer/create-async-file-mapper.js +0 -57
- package/src/server/template-renderer/index.js +0 -277
- package/src/server/template-renderer/parse-template.js +0 -42
- package/src/server/template-renderer/template-stream.js +0 -82
- package/src/server/util.js +0 -18
- package/src/server/webpack-plugin/client.js +0 -65
- package/src/server/webpack-plugin/server.js +0 -66
- package/src/server/webpack-plugin/util.js +0 -34
- package/src/server/write.js +0 -50
package/README.md
CHANGED
|
@@ -7,296 +7,21 @@
|
|
|
7
7
|
<a href="https://www.npmjs.com/package/vue"><img src="https://img.shields.io/npm/v/vue.svg?sanitize=true" alt="Version"></a>
|
|
8
8
|
<a href="https://www.npmjs.com/package/vue"><img src="https://img.shields.io/npm/l/vue.svg?sanitize=true" alt="License"></a>
|
|
9
9
|
<a href="https://chat.vuejs.org/"><img src="https://img.shields.io/badge/chat-on%20discord-7289da.svg?sanitize=true" alt="Chat"></a>
|
|
10
|
-
<br>
|
|
11
|
-
<a href="https://app.saucelabs.com/builds/50f8372d79f743a3b25fb6ca4851ca4c"><img src="https://app.saucelabs.com/buildstatus/vuejs" alt="Build Status"></a>
|
|
12
10
|
</p>
|
|
13
11
|
|
|
14
|
-
|
|
12
|
+
## This repo is for Vue 2
|
|
15
13
|
|
|
16
|
-
|
|
14
|
+
You are looking at the repository for Vue 2. The repo for Vue 3 is [vuejs/core](https://github.com/vuejs/core).
|
|
17
15
|
|
|
18
|
-
|
|
19
|
-
- [Become a backer or sponsor on Open Collective](https://opencollective.com/vuejs).
|
|
20
|
-
- [One-time donation via PayPal or crypto-currencies](https://vuejs.org/support-vuejs/#One-time-Donations).
|
|
16
|
+
## Sponsors
|
|
21
17
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
Funds donated via Patreon go directly to support Evan You's full-time work on Vue.js. Funds donated via OpenCollective are managed with transparent expenses and will be used for compensating work and expenses for core team members or sponsoring community events. Your name/logo will receive proper recognition and exposure by donating on either platform.
|
|
25
|
-
|
|
26
|
-
<h3 align="center">Special Sponsors</h3>
|
|
27
|
-
<!--special start-->
|
|
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/).
|
|
28
19
|
|
|
29
20
|
<p align="center">
|
|
30
|
-
<a href="https://
|
|
31
|
-
<img
|
|
21
|
+
<a target="_blank" href="https://vuejs.org/sponsor/">
|
|
22
|
+
<img alt="sponsors" src="https://sponsors.vuejs.org/sponsors.svg">
|
|
32
23
|
</a>
|
|
33
24
|
</p>
|
|
34
|
-
|
|
35
|
-
<!--special end-->
|
|
36
|
-
|
|
37
|
-
<h3 align="center">Platinum Sponsors</h3>
|
|
38
|
-
|
|
39
|
-
<!--platinum start-->
|
|
40
|
-
<table>
|
|
41
|
-
<tbody>
|
|
42
|
-
<tr>
|
|
43
|
-
<td align="center" valign="middle">
|
|
44
|
-
<a href="https://vueschool.io/?utm_source=Vuejs.org&utm_medium=Banner&utm_campaign=Sponsored%20Banner&utm_content=V1" target="_blank">
|
|
45
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/vueschool.png">
|
|
46
|
-
</a>
|
|
47
|
-
</td>
|
|
48
|
-
<td align="center" valign="middle">
|
|
49
|
-
<a href="https://vehikl.com/" target="_blank">
|
|
50
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/vehikl.png">
|
|
51
|
-
</a>
|
|
52
|
-
</td>
|
|
53
|
-
<td align="center" valign="middle">
|
|
54
|
-
<a href="https://retool.com/?utm_source=sponsor&utm_campaign=vue" target="_blank">
|
|
55
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/retool.png">
|
|
56
|
-
</a>
|
|
57
|
-
</td>
|
|
58
|
-
<td align="center" valign="middle">
|
|
59
|
-
<a href="https://passionatepeople.io/" target="_blank">
|
|
60
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/passionate_people.png">
|
|
61
|
-
</a>
|
|
62
|
-
</td>
|
|
63
|
-
</tr><tr></tr>
|
|
64
|
-
<tr>
|
|
65
|
-
<td align="center" valign="middle">
|
|
66
|
-
<a href="https://www.storyblok.com" target="_blank">
|
|
67
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/storyblok.png">
|
|
68
|
-
</a>
|
|
69
|
-
</td>
|
|
70
|
-
<td align="center" valign="middle">
|
|
71
|
-
<a href="https://ionicframework.com/vue?utm_source=partner&utm_medium=referral&utm_campaign=vuesponsorship&utm_content=vuedocs" target="_blank">
|
|
72
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/ionic.png">
|
|
73
|
-
</a>
|
|
74
|
-
</td>
|
|
75
|
-
<td align="center" valign="middle">
|
|
76
|
-
<a href="https://nuxtjs.org/" target="_blank">
|
|
77
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/nuxt.png">
|
|
78
|
-
</a>
|
|
79
|
-
</td>
|
|
80
|
-
</tr><tr></tr>
|
|
81
|
-
</tbody>
|
|
82
|
-
</table>
|
|
83
|
-
<!--platinum end-->
|
|
84
|
-
|
|
85
|
-
<!--special-china start-->
|
|
86
|
-
<h3 align="center">Platinum Sponsors (China)</h3>
|
|
87
|
-
<table>
|
|
88
|
-
<tbody>
|
|
89
|
-
<tr>
|
|
90
|
-
<td align="center" valign="middle">
|
|
91
|
-
<a href="http://www.dcloud.io/?hmsr=vuejsorg&hmpl=&hmcu=&hmkw=&hmci=" target="_blank">
|
|
92
|
-
<img width="177px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/dcloud.gif">
|
|
93
|
-
</a>
|
|
94
|
-
</td>
|
|
95
|
-
</tr><tr></tr>
|
|
96
|
-
</tbody>
|
|
97
|
-
</table>
|
|
98
|
-
<!--special-china end-->
|
|
99
|
-
|
|
100
|
-
<h3 align="center">Gold Sponsors</h3>
|
|
101
|
-
|
|
102
|
-
<!--gold start-->
|
|
103
|
-
<table>
|
|
104
|
-
<tbody>
|
|
105
|
-
<tr>
|
|
106
|
-
<td align="center" valign="middle">
|
|
107
|
-
<a href="https://www.vuemastery.com/" target="_blank">
|
|
108
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/vuemastery.png">
|
|
109
|
-
</a>
|
|
110
|
-
</td>
|
|
111
|
-
<td align="center" valign="middle">
|
|
112
|
-
<a href="https://laravel.com" target="_blank">
|
|
113
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/laravel.png">
|
|
114
|
-
</a>
|
|
115
|
-
</td>
|
|
116
|
-
<td align="center" valign="middle">
|
|
117
|
-
<a href="https://htmlburger.com" target="_blank">
|
|
118
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/html_burger.png">
|
|
119
|
-
</a>
|
|
120
|
-
</td>
|
|
121
|
-
<td align="center" valign="middle">
|
|
122
|
-
<a href="https://www.frontenddeveloperlove.com/" target="_blank">
|
|
123
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/frontendlove.png">
|
|
124
|
-
</a>
|
|
125
|
-
</td>
|
|
126
|
-
<td align="center" valign="middle">
|
|
127
|
-
<a href="https://neds.com.au/" target="_blank">
|
|
128
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/neds.png">
|
|
129
|
-
</a>
|
|
130
|
-
</td>
|
|
131
|
-
<td align="center" valign="middle">
|
|
132
|
-
<a href="https://icons8.com/" target="_blank">
|
|
133
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/icons_8.png">
|
|
134
|
-
</a>
|
|
135
|
-
</td>
|
|
136
|
-
</tr><tr></tr>
|
|
137
|
-
<tr>
|
|
138
|
-
<td align="center" valign="middle">
|
|
139
|
-
<a href="https://vuejobs.com/?ref=vuejs" target="_blank">
|
|
140
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/vuejobs.png">
|
|
141
|
-
</a>
|
|
142
|
-
</td>
|
|
143
|
-
<td align="center" valign="middle">
|
|
144
|
-
<a href="https://tidelift.com/subscription/npm/vue" target="_blank">
|
|
145
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/tidelift.png">
|
|
146
|
-
</a>
|
|
147
|
-
</td>
|
|
148
|
-
<td align="center" valign="middle">
|
|
149
|
-
<a href="https://www.firesticktricks.com/" target="_blank">
|
|
150
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/firestick_tricks.png">
|
|
151
|
-
</a>
|
|
152
|
-
</td>
|
|
153
|
-
<td align="center" valign="middle">
|
|
154
|
-
<a href="https://intygrate.com/" target="_blank">
|
|
155
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/intygrate.png">
|
|
156
|
-
</a>
|
|
157
|
-
</td>
|
|
158
|
-
<td align="center" valign="middle">
|
|
159
|
-
<a href="http://en.shopware.com/" target="_blank">
|
|
160
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/shopware_ag.png">
|
|
161
|
-
</a>
|
|
162
|
-
</td>
|
|
163
|
-
<td align="center" valign="middle">
|
|
164
|
-
<a href="https://www.vpnranks.com/" target="_blank">
|
|
165
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/vpnranks.png">
|
|
166
|
-
</a>
|
|
167
|
-
</td>
|
|
168
|
-
</tr><tr></tr>
|
|
169
|
-
<tr>
|
|
170
|
-
<td align="center" valign="middle">
|
|
171
|
-
<a href="https://www.bacancytechnology.com/hire-vuejs-developer" target="_blank">
|
|
172
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/bacancy_technology.png">
|
|
173
|
-
</a>
|
|
174
|
-
</td>
|
|
175
|
-
<td align="center" valign="middle">
|
|
176
|
-
<a href="https://www.bestvpn.co/" target="_blank">
|
|
177
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/bestvpn_co.png">
|
|
178
|
-
</a>
|
|
179
|
-
</td>
|
|
180
|
-
<td align="center" valign="middle">
|
|
181
|
-
<a href="https://www.y8.com/" target="_blank">
|
|
182
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/y8.png">
|
|
183
|
-
</a>
|
|
184
|
-
</td>
|
|
185
|
-
<td align="center" valign="middle">
|
|
186
|
-
<a href="https://js.devexpress.com/" target="_blank">
|
|
187
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/devexpress.png">
|
|
188
|
-
</a>
|
|
189
|
-
</td>
|
|
190
|
-
<td align="center" valign="middle">
|
|
191
|
-
<a href="https://fastcoding.jp/javascript/ " target="_blank">
|
|
192
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/fastcoding_inc.svg?sanitize=true">
|
|
193
|
-
</a>
|
|
194
|
-
</td>
|
|
195
|
-
<td align="center" valign="middle">
|
|
196
|
-
<a href="https://usave.co.uk/utilities/broadband" target="_blank">
|
|
197
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/usave.png">
|
|
198
|
-
</a>
|
|
199
|
-
</td>
|
|
200
|
-
</tr><tr></tr>
|
|
201
|
-
<tr>
|
|
202
|
-
<td align="center" valign="middle">
|
|
203
|
-
<a href="https://www.foo.software" target="_blank">
|
|
204
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/foo.png">
|
|
205
|
-
</a>
|
|
206
|
-
</td>
|
|
207
|
-
<td align="center" valign="middle">
|
|
208
|
-
<a href="https://flatlogic.com/templates" target="_blank">
|
|
209
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/flatlogic_templates.svg?sanitize=true">
|
|
210
|
-
</a>
|
|
211
|
-
</td>
|
|
212
|
-
<td align="center" valign="middle">
|
|
213
|
-
<a href="http://moovweb.com/" target="_blank">
|
|
214
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/moovweb.png">
|
|
215
|
-
</a>
|
|
216
|
-
</td>
|
|
217
|
-
<td align="center" valign="middle">
|
|
218
|
-
<a href="https://vpn-review.com/netflix-vpn" target="_blank">
|
|
219
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/vpn_review.png">
|
|
220
|
-
</a>
|
|
221
|
-
</td>
|
|
222
|
-
<td align="center" valign="middle">
|
|
223
|
-
<a href="https://cosmos.network/" target="_blank">
|
|
224
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/tendermint.png">
|
|
225
|
-
</a>
|
|
226
|
-
</td>
|
|
227
|
-
<td align="center" valign="middle">
|
|
228
|
-
<a href="https://www.okayhq.com/" target="_blank">
|
|
229
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/okay.png">
|
|
230
|
-
</a>
|
|
231
|
-
</td>
|
|
232
|
-
</tr><tr></tr>
|
|
233
|
-
<tr>
|
|
234
|
-
<td align="center" valign="middle">
|
|
235
|
-
<a href="https://www.vpsserver.com" target="_blank">
|
|
236
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/vpsserver_com.png">
|
|
237
|
-
</a>
|
|
238
|
-
</td>
|
|
239
|
-
<td align="center" valign="middle">
|
|
240
|
-
<a href="https://aussiecasinohex.com/" target="_blank">
|
|
241
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/aussiecasinohex.svg?sanitize=true">
|
|
242
|
-
</a>
|
|
243
|
-
</td>
|
|
244
|
-
<td align="center" valign="middle">
|
|
245
|
-
<a href="https://litslink.com" target="_blank">
|
|
246
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/litslink.png">
|
|
247
|
-
</a>
|
|
248
|
-
</td>
|
|
249
|
-
<td align="center" valign="middle">
|
|
250
|
-
<a href="https://newicon.net" target="_blank">
|
|
251
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/newicon.png">
|
|
252
|
-
</a>
|
|
253
|
-
</td>
|
|
254
|
-
<td align="center" valign="middle">
|
|
255
|
-
<a href="https://lowdefy.com?k=w432" target="_blank">
|
|
256
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/lowdefy.png">
|
|
257
|
-
</a>
|
|
258
|
-
</td>
|
|
259
|
-
<td align="center" valign="middle">
|
|
260
|
-
<a href="https://quickbookstoolhub.com/" target="_blank">
|
|
261
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/quickbooks_tool_hub.png">
|
|
262
|
-
</a>
|
|
263
|
-
</td>
|
|
264
|
-
</tr><tr></tr>
|
|
265
|
-
<tr>
|
|
266
|
-
<td align="center" valign="middle">
|
|
267
|
-
<a href="https://linecorp.com" target="_blank">
|
|
268
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/line_corporation.png">
|
|
269
|
-
</a>
|
|
270
|
-
</td>
|
|
271
|
-
<td align="center" valign="middle">
|
|
272
|
-
<a href="https://exmax.it/" target="_blank">
|
|
273
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/exmax.png">
|
|
274
|
-
</a>
|
|
275
|
-
</td>
|
|
276
|
-
</tr><tr></tr>
|
|
277
|
-
</tbody>
|
|
278
|
-
</table>
|
|
279
|
-
<!--gold end-->
|
|
280
|
-
|
|
281
|
-
<h3 align="center">Sponsors via <a href="https://opencollective.com/vuejs">Open Collective</a></h3>
|
|
282
|
-
|
|
283
|
-
<h4 align="center">Platinum</h4>
|
|
284
|
-
|
|
285
|
-
<a href="https://opencollective.com/vuejs/tiers/platinum-sponsors/0/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/platinum-sponsors/0/avatar.svg?sanitize=true"></a>
|
|
286
|
-
<a href="https://opencollective.com/vuejs/tiers/platinum-sponsors/1/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/platinum-sponsors/1/avatar.svg?sanitize=true"></a>
|
|
287
|
-
|
|
288
|
-
<h4 align="center">Gold</h4>
|
|
289
|
-
|
|
290
|
-
<a href="https://opencollective.com/vuejs/tiers/gold-sponsors/0/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/gold-sponsors/0/avatar.svg?sanitize=true" height="60px"></a>
|
|
291
|
-
<a href="https://opencollective.com/vuejs/tiers/gold-sponsors/1/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/gold-sponsors/1/avatar.svg?sanitize=true" height="60px"></a>
|
|
292
|
-
<a href="https://opencollective.com/vuejs/tiers/gold-sponsors/2/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/gold-sponsors/2/avatar.svg?sanitize=true" height="60px"></a>
|
|
293
|
-
<a href="https://opencollective.com/vuejs/tiers/gold-sponsors/3/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/gold-sponsors/3/avatar.svg?sanitize=true" height="60px"></a>
|
|
294
|
-
<a href="https://opencollective.com/vuejs/tiers/gold-sponsors/4/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/gold-sponsors/4/avatar.svg?sanitize=true" height="60px"></a>
|
|
295
|
-
<a href="https://opencollective.com/vuejs/tiers/gold-sponsors/5/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/gold-sponsors/5/avatar.svg?sanitize=true" height="60px"></a>
|
|
296
|
-
<a href="https://opencollective.com/vuejs/tiers/gold-sponsors/6/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/gold-sponsors/6/avatar.svg?sanitize=true" height="60px"></a>
|
|
297
|
-
<a href="https://opencollective.com/vuejs/tiers/gold-sponsors/7/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/gold-sponsors/7/avatar.svg?sanitize=true" height="60px"></a>
|
|
298
|
-
<a href="https://opencollective.com/vuejs/tiers/gold-sponsors/8/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/gold-sponsors/8/avatar.svg?sanitize=true" height="60px"></a>
|
|
299
|
-
<a href="https://opencollective.com/vuejs/tiers/gold-sponsors/9/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/gold-sponsors/9/avatar.svg?sanitize=true" height="60px"></a><a href="https://opencollective.com/vuejs/tiers/gold-sponsors/10/website" target="_blank" rel="noopener noreferrer"><img src="https://opencollective.com/vuejs/tiers/gold-sponsors/10/avatar.svg?sanitize=true" height="60px"></a>
|
|
300
25
|
|
|
301
26
|
---
|
|
302
27
|
|
|
@@ -310,16 +35,16 @@ Vue.js supports all browsers that are [ES5-compliant](https://kangax.github.io/c
|
|
|
310
35
|
|
|
311
36
|
## Ecosystem
|
|
312
37
|
|
|
313
|
-
| Project
|
|
314
|
-
|
|
315
|
-
| [vue-router] | [![vue-router-status]][vue-router-package]
|
|
316
|
-
| [vuex] | [![vuex-status]][vuex-package]
|
|
317
|
-
| [vue-cli] | [![vue-cli-status]][vue-cli-package]
|
|
318
|
-
| [vue-loader] | [![vue-loader-status]][vue-loader-package]
|
|
319
|
-
| [vue-server-renderer] | [![vue-server-renderer-status]][vue-server-renderer-package] | Server-side rendering support
|
|
320
|
-
| [vue-class-component] | [![vue-class-component-status]][vue-class-component-package] | TypeScript decorator for a class-based API
|
|
321
|
-
| [vue-rx] | [![vue-rx-status]][vue-rx-package]
|
|
322
|
-
| [vue-devtools] | [![vue-devtools-status]][vue-devtools-package]
|
|
38
|
+
| Project | Status | Description |
|
|
39
|
+
| --------------------- | ------------------------------------------------------------ | ------------------------------------------------------- |
|
|
40
|
+
| [vue-router] | [![vue-router-status]][vue-router-package] | Single-page application routing |
|
|
41
|
+
| [vuex] | [![vuex-status]][vuex-package] | Large-scale state management |
|
|
42
|
+
| [vue-cli] | [![vue-cli-status]][vue-cli-package] | Project scaffolding |
|
|
43
|
+
| [vue-loader] | [![vue-loader-status]][vue-loader-package] | Single File Component (`*.vue` file) loader for webpack |
|
|
44
|
+
| [vue-server-renderer] | [![vue-server-renderer-status]][vue-server-renderer-package] | Server-side rendering support |
|
|
45
|
+
| [vue-class-component] | [![vue-class-component-status]][vue-class-component-package] | TypeScript decorator for a class-based API |
|
|
46
|
+
| [vue-rx] | [![vue-rx-status]][vue-rx-package] | RxJS integration |
|
|
47
|
+
| [vue-devtools] | [![vue-devtools-status]][vue-devtools-package] | Browser DevTools extension |
|
|
323
48
|
|
|
324
49
|
[vue-router]: https://github.com/vuejs/vue-router
|
|
325
50
|
[vuex]: https://github.com/vuejs/vuex
|
|
@@ -328,8 +53,7 @@ Vue.js supports all browsers that are [ES5-compliant](https://kangax.github.io/c
|
|
|
328
53
|
[vue-server-renderer]: https://github.com/vuejs/vue/tree/dev/packages/vue-server-renderer
|
|
329
54
|
[vue-class-component]: https://github.com/vuejs/vue-class-component
|
|
330
55
|
[vue-rx]: https://github.com/vuejs/vue-rx
|
|
331
|
-
[vue-devtools]:
|
|
332
|
-
|
|
56
|
+
[vue-devtools]: https://github.com/vuejs/vue-devtools
|
|
333
57
|
[vue-router-status]: https://img.shields.io/npm/v/vue-router.svg
|
|
334
58
|
[vuex-status]: https://img.shields.io/npm/v/vuex.svg
|
|
335
59
|
[vue-cli-status]: https://img.shields.io/npm/v/@vue/cli.svg
|
|
@@ -338,7 +62,6 @@ Vue.js supports all browsers that are [ES5-compliant](https://kangax.github.io/c
|
|
|
338
62
|
[vue-class-component-status]: https://img.shields.io/npm/v/vue-class-component.svg
|
|
339
63
|
[vue-rx-status]: https://img.shields.io/npm/v/vue-rx.svg
|
|
340
64
|
[vue-devtools-status]: https://img.shields.io/chrome-web-store/v/nhdogjmejiglipccpnnnanhbledajbpd.svg
|
|
341
|
-
|
|
342
65
|
[vue-router-package]: https://npmjs.com/package/vue-router
|
|
343
66
|
[vuex-package]: https://npmjs.com/package/vuex
|
|
344
67
|
[vue-cli-package]: https://npmjs.com/package/@vue/cli
|
|
@@ -378,7 +101,6 @@ Thank you to all the people who already contributed to Vue!
|
|
|
378
101
|
|
|
379
102
|
<a href="https://github.com/vuejs/vue/graphs/contributors"><img src="https://opencollective.com/vuejs/contributors.svg?width=890" /></a>
|
|
380
103
|
|
|
381
|
-
|
|
382
104
|
## License
|
|
383
105
|
|
|
384
106
|
[MIT](https://opensource.org/licenses/MIT)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@vue/compiler-sfc'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('@vue/compiler-sfc')
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@vue/compiler-sfc'
|