vue 2.6.9 → 2.6.13
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 +133 -74
- package/dist/README.md +2 -4
- package/dist/vue.common.dev.js +195 -107
- package/dist/vue.common.prod.js +3 -3
- package/dist/vue.esm.browser.js +189 -107
- package/dist/vue.esm.browser.min.js +3 -3
- package/dist/vue.esm.js +195 -107
- package/dist/vue.js +195 -107
- package/dist/vue.min.js +3 -3
- package/dist/vue.runtime.common.dev.js +159 -91
- package/dist/vue.runtime.common.prod.js +3 -3
- package/dist/vue.runtime.esm.js +159 -91
- package/dist/vue.runtime.js +159 -91
- package/dist/vue.runtime.min.js +3 -3
- package/package.json +5 -5
- package/src/compiler/codegen/events.js +3 -3
- package/src/compiler/codegen/index.js +3 -2
- package/src/compiler/error-detector.js +18 -3
- package/src/compiler/parser/html-parser.js +3 -3
- package/src/compiler/parser/index.js +11 -7
- package/src/core/components/keep-alive.js +42 -14
- package/src/core/instance/lifecycle.js +2 -1
- package/src/core/instance/proxy.js +2 -2
- package/src/core/instance/render-helpers/bind-dynamic-keys.js +2 -2
- package/src/core/instance/render-helpers/check-keycodes.js +1 -0
- package/src/core/instance/render-helpers/render-slot.js +10 -8
- package/src/core/instance/render.js +1 -1
- package/src/core/instance/state.js +8 -6
- package/src/core/observer/scheduler.js +17 -11
- package/src/core/observer/watcher.js +3 -5
- package/src/core/util/env.js +1 -2
- package/src/core/util/next-tick.js +1 -1
- package/src/core/util/props.js +24 -15
- package/src/core/vdom/create-component.js +4 -2
- package/src/core/vdom/create-element.js +6 -0
- package/src/core/vdom/helpers/normalize-scoped-slots.js +5 -3
- package/src/core/vdom/helpers/resolve-async-component.js +14 -2
- package/src/core/vdom/patch.js +6 -6
- package/src/platforms/web/compiler/modules/model.js +1 -1
- package/src/platforms/web/runtime/modules/attrs.js +3 -3
- package/src/platforms/web/runtime/modules/dom-props.js +3 -2
- package/src/platforms/web/server/modules/attrs.js +4 -0
- package/src/platforms/web/server/modules/dom-props.js +2 -2
- package/src/platforms/web/server/util.js +4 -4
- package/src/platforms/web/util/attrs.js +1 -1
- package/src/platforms/web/util/element.js +1 -1
- package/src/server/template-renderer/create-async-file-mapper.js +5 -1
- package/types/index.d.ts +1 -2
- package/types/options.d.ts +3 -3
- package/types/umd.d.ts +48 -0
- package/types/vnode.d.ts +3 -3
- package/types/vue.d.ts +5 -1
- package/src/.DS_Store +0 -0
- package/src/compiler/.DS_Store +0 -0
- package/src/platforms/.DS_Store +0 -0
- package/src/platforms/weex/.DS_Store +0 -0
- package/src/platforms/weex/compiler/.DS_Store +0 -0
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<p align="center"><a href="https://vuejs.org" target="_blank" rel="noopener noreferrer"><img width="100" src="https://vuejs.org/images/logo.png" alt="Vue logo"></a></p>
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<a href="https://circleci.com/gh/vuejs/vue/tree/dev"><img src="https://img.shields.io/circleci/project/github/vuejs/vue/dev.svg" alt="Build Status"></a>
|
|
5
|
-
<a href="https://codecov.io/github/vuejs/vue?branch=dev"><img src="https://img.shields.io/codecov/c/github/vuejs/vue/dev.svg" alt="Coverage Status"></a>
|
|
6
|
-
<a href="https://npmcharts.com/compare/vue?minimal=true"><img src="https://img.shields.io/npm/dm/vue.svg" alt="Downloads"></a>
|
|
7
|
-
<a href="https://www.npmjs.com/package/vue"><img src="https://img.shields.io/npm/v/vue.svg" alt="Version"></a>
|
|
8
|
-
<a href="https://www.npmjs.com/package/vue"><img src="https://img.shields.io/npm/l/vue.svg" alt="License"></a>
|
|
9
|
-
<a href="https://chat.vuejs.org/"><img src="https://img.shields.io/badge/chat-on%20discord-7289da.svg" alt="Chat"></a>
|
|
4
|
+
<a href="https://circleci.com/gh/vuejs/vue/tree/dev"><img src="https://img.shields.io/circleci/project/github/vuejs/vue/dev.svg?sanitize=true" alt="Build Status"></a>
|
|
5
|
+
<a href="https://codecov.io/github/vuejs/vue?branch=dev"><img src="https://img.shields.io/codecov/c/github/vuejs/vue/dev.svg?sanitize=true" alt="Coverage Status"></a>
|
|
6
|
+
<a href="https://npmcharts.com/compare/vue?minimal=true"><img src="https://img.shields.io/npm/dm/vue.svg?sanitize=true" alt="Downloads"></a>
|
|
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
|
+
<a href="https://www.npmjs.com/package/vue"><img src="https://img.shields.io/npm/l/vue.svg?sanitize=true" alt="License"></a>
|
|
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
10
|
<br>
|
|
11
11
|
<a href="https://app.saucelabs.com/builds/50f8372d79f743a3b25fb6ca4851ca4c"><img src="https://app.saucelabs.com/buildstatus/vuejs" alt="Build Status"></a>
|
|
12
12
|
</p>
|
|
@@ -17,7 +17,7 @@ Vue.js is an MIT-licensed open source project with its ongoing development made
|
|
|
17
17
|
|
|
18
18
|
- [Become a backer or sponsor on Patreon](https://www.patreon.com/evanyou).
|
|
19
19
|
- [Become a backer or sponsor on Open Collective](https://opencollective.com/vuejs).
|
|
20
|
-
- [One-time donation via PayPal or crypto-currencies
|
|
20
|
+
- [One-time donation via PayPal or crypto-currencies](https://vuejs.org/support-vuejs/#One-time-Donations).
|
|
21
21
|
|
|
22
22
|
#### What's the difference between Patreon and OpenCollective?
|
|
23
23
|
|
|
@@ -27,8 +27,8 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu
|
|
|
27
27
|
<!--special start-->
|
|
28
28
|
|
|
29
29
|
<p align="center">
|
|
30
|
-
<a href="https://
|
|
31
|
-
<img width="260px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
30
|
+
<a href="https://autocode.com/" target="_blank">
|
|
31
|
+
<img width="260px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/autocode.svg?sanitize=true">
|
|
32
32
|
</a>
|
|
33
33
|
</p>
|
|
34
34
|
|
|
@@ -41,35 +41,40 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu
|
|
|
41
41
|
<tbody>
|
|
42
42
|
<tr>
|
|
43
43
|
<td align="center" valign="middle">
|
|
44
|
-
<a href="https://
|
|
45
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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
46
|
</a>
|
|
47
47
|
</td>
|
|
48
48
|
<td align="center" valign="middle">
|
|
49
|
-
<a href="https://
|
|
50
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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
51
|
</a>
|
|
52
52
|
</td>
|
|
53
53
|
<td align="center" valign="middle">
|
|
54
|
-
<a href="
|
|
55
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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
56
|
</a>
|
|
57
57
|
</td>
|
|
58
58
|
<td align="center" valign="middle">
|
|
59
|
-
<a href="https://
|
|
60
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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
61
|
</a>
|
|
62
62
|
</td>
|
|
63
63
|
</tr><tr></tr>
|
|
64
64
|
<tr>
|
|
65
65
|
<td align="center" valign="middle">
|
|
66
|
-
<a href="https://
|
|
67
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
68
73
|
</a>
|
|
69
74
|
</td>
|
|
70
75
|
<td align="center" valign="middle">
|
|
71
|
-
<a href="https://
|
|
72
|
-
<img width="222px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
73
78
|
</a>
|
|
74
79
|
</td>
|
|
75
80
|
</tr><tr></tr>
|
|
@@ -92,7 +97,7 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu
|
|
|
92
97
|
</table>
|
|
93
98
|
<!--special-china end-->
|
|
94
99
|
|
|
95
|
-
<h3 align="center">Gold Sponsors</
|
|
100
|
+
<h3 align="center">Gold Sponsors</h3>
|
|
96
101
|
|
|
97
102
|
<!--gold start-->
|
|
98
103
|
<table>
|
|
@@ -108,11 +113,6 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu
|
|
|
108
113
|
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/laravel.png">
|
|
109
114
|
</a>
|
|
110
115
|
</td>
|
|
111
|
-
<td align="center" valign="middle">
|
|
112
|
-
<a href="https://chaitin.cn/en/" target="_blank">
|
|
113
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/chaitin.png">
|
|
114
|
-
</a>
|
|
115
|
-
</td>
|
|
116
116
|
<td align="center" valign="middle">
|
|
117
117
|
<a href="https://htmlburger.com" target="_blank">
|
|
118
118
|
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/html_burger.png">
|
|
@@ -120,19 +120,7 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu
|
|
|
120
120
|
</td>
|
|
121
121
|
<td align="center" valign="middle">
|
|
122
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/
|
|
124
|
-
</a>
|
|
125
|
-
</td>
|
|
126
|
-
<td align="center" valign="middle">
|
|
127
|
-
<a href="https://onsen.io/vue/" target="_blank">
|
|
128
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/onsen_ui.png">
|
|
129
|
-
</a>
|
|
130
|
-
</td>
|
|
131
|
-
</tr><tr></tr>
|
|
132
|
-
<tr>
|
|
133
|
-
<td align="center" valign="middle">
|
|
134
|
-
<a href="https://vuetifyjs.com" target="_blank">
|
|
135
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/vuetify.png">
|
|
123
|
+
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/frontendlove.png">
|
|
136
124
|
</a>
|
|
137
125
|
</td>
|
|
138
126
|
<td align="center" valign="middle">
|
|
@@ -145,6 +133,8 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu
|
|
|
145
133
|
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/icons_8.png">
|
|
146
134
|
</a>
|
|
147
135
|
</td>
|
|
136
|
+
</tr><tr></tr>
|
|
137
|
+
<tr>
|
|
148
138
|
<td align="center" valign="middle">
|
|
149
139
|
<a href="https://vuejobs.com/?ref=vuejs" target="_blank">
|
|
150
140
|
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/vuejobs.png">
|
|
@@ -156,67 +146,131 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu
|
|
|
156
146
|
</a>
|
|
157
147
|
</td>
|
|
158
148
|
<td align="center" valign="middle">
|
|
159
|
-
<a href="
|
|
160
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
161
198
|
</a>
|
|
162
199
|
</td>
|
|
163
200
|
</tr><tr></tr>
|
|
164
201
|
<tr>
|
|
165
202
|
<td align="center" valign="middle">
|
|
166
|
-
<a href="https://
|
|
167
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
168
205
|
</a>
|
|
169
206
|
</td>
|
|
170
207
|
<td align="center" valign="middle">
|
|
171
|
-
<a href="https://
|
|
172
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
173
210
|
</a>
|
|
174
211
|
</td>
|
|
175
212
|
<td align="center" valign="middle">
|
|
176
|
-
<a href="
|
|
177
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
178
215
|
</a>
|
|
179
216
|
</td>
|
|
180
217
|
<td align="center" valign="middle">
|
|
181
|
-
<a href="https://
|
|
182
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
183
220
|
</a>
|
|
184
221
|
</td>
|
|
185
222
|
<td align="center" valign="middle">
|
|
186
|
-
<a href="https://
|
|
187
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
188
225
|
</a>
|
|
189
226
|
</td>
|
|
190
227
|
<td align="center" valign="middle">
|
|
191
|
-
<a href="https://
|
|
192
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
193
230
|
</a>
|
|
194
231
|
</td>
|
|
195
232
|
</tr><tr></tr>
|
|
196
233
|
<tr>
|
|
197
234
|
<td align="center" valign="middle">
|
|
198
|
-
<a href="https://
|
|
199
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
200
237
|
</a>
|
|
201
238
|
</td>
|
|
202
239
|
<td align="center" valign="middle">
|
|
203
|
-
<a href="https://
|
|
204
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
205
242
|
</a>
|
|
206
243
|
</td>
|
|
207
244
|
<td align="center" valign="middle">
|
|
208
|
-
<a href="https://
|
|
209
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
210
247
|
</a>
|
|
211
248
|
</td>
|
|
212
249
|
<td align="center" valign="middle">
|
|
213
|
-
<a href="https://
|
|
214
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
215
252
|
</a>
|
|
216
253
|
</td>
|
|
217
254
|
<td align="center" valign="middle">
|
|
218
|
-
<a href="
|
|
219
|
-
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/
|
|
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">
|
|
220
274
|
</a>
|
|
221
275
|
</td>
|
|
222
276
|
</tr><tr></tr>
|
|
@@ -228,16 +282,21 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu
|
|
|
228
282
|
|
|
229
283
|
<h4 align="center">Platinum</h4>
|
|
230
284
|
|
|
231
|
-
<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"></a>
|
|
232
|
-
<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"></a>
|
|
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>
|
|
233
287
|
|
|
234
288
|
<h4 align="center">Gold</h4>
|
|
235
289
|
|
|
236
|
-
<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" height="60px"></a>
|
|
237
|
-
<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" height="60px"></a>
|
|
238
|
-
<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" height="60px"></a>
|
|
239
|
-
<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" height="60px"></a>
|
|
240
|
-
<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" height="60px"></a>
|
|
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>
|
|
241
300
|
|
|
242
301
|
---
|
|
243
302
|
|
|
@@ -247,7 +306,7 @@ Vue (pronounced `/vjuː/`, like view) is a **progressive framework** for buildin
|
|
|
247
306
|
|
|
248
307
|
#### Browser Compatibility
|
|
249
308
|
|
|
250
|
-
Vue.js supports all browsers that are [ES5-compliant](
|
|
309
|
+
Vue.js supports all browsers that are [ES5-compliant](https://kangax.github.io/compat-table/es5/) (IE8 and below are not supported).
|
|
251
310
|
|
|
252
311
|
## Ecosystem
|
|
253
312
|
|
|
@@ -295,7 +354,7 @@ To check out [live examples](https://vuejs.org/v2/examples/) and docs, visit [vu
|
|
|
295
354
|
|
|
296
355
|
## Questions
|
|
297
356
|
|
|
298
|
-
For questions and support please use [the official forum](
|
|
357
|
+
For questions and support please use [the official forum](https://forum.vuejs.org) or [community chat](https://chat.vuejs.org/). The issue list of this repo is **exclusively** for bug reports and feature requests.
|
|
299
358
|
|
|
300
359
|
## Issues
|
|
301
360
|
|
|
@@ -322,6 +381,6 @@ Thank you to all the people who already contributed to Vue!
|
|
|
322
381
|
|
|
323
382
|
## License
|
|
324
383
|
|
|
325
|
-
[MIT](
|
|
384
|
+
[MIT](https://opensource.org/licenses/MIT)
|
|
326
385
|
|
|
327
386
|
Copyright (c) 2013-present, Yuxi (Evan) You
|
package/dist/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
### Terms
|
|
11
11
|
|
|
12
|
-
- **Full**: builds that
|
|
12
|
+
- **Full**: builds that contain both the compiler and the runtime.
|
|
13
13
|
|
|
14
14
|
- **Compiler**: code that is responsible for compiling template strings into JavaScript render functions.
|
|
15
15
|
|
|
@@ -90,9 +90,7 @@ module.exports = {
|
|
|
90
90
|
plugins: [
|
|
91
91
|
// ...
|
|
92
92
|
new webpack.DefinePlugin({
|
|
93
|
-
'process.env':
|
|
94
|
-
NODE_ENV: JSON.stringify('production')
|
|
95
|
-
}
|
|
93
|
+
'process.env.NODE_ENV': JSON.stringify('production')
|
|
96
94
|
})
|
|
97
95
|
]
|
|
98
96
|
}
|