vue 3.5.24 → 3.5.26
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 +0 -4
- package/dist/vue.cjs.js +1 -1
- package/dist/vue.cjs.prod.js +1 -1
- package/dist/vue.esm-browser.js +2684 -2597
- package/dist/vue.esm-browser.prod.js +8 -8
- package/dist/vue.esm-bundler.js +1 -1
- package/dist/vue.global.js +2654 -2567
- package/dist/vue.global.prod.js +9 -9
- package/dist/vue.runtime.esm-browser.js +2549 -2482
- package/dist/vue.runtime.esm-browser.prod.js +3 -3
- package/dist/vue.runtime.esm-bundler.js +1 -1
- package/dist/vue.runtime.global.js +2541 -2472
- package/dist/vue.runtime.global.prod.js +3 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
### From CDN or without a Bundler
|
|
6
6
|
|
|
7
7
|
- **`vue(.runtime).global(.prod).js`**:
|
|
8
|
-
|
|
9
8
|
- For direct use via `<script src="...">` in the browser. Exposes the `Vue` global.
|
|
10
9
|
- Note that global builds are not [UMD](https://github.com/umdjs/umd) builds. They are built as [IIFEs](https://developer.mozilla.org/en-US/docs/Glossary/IIFE) and is only meant for direct use via `<script src="...">`.
|
|
11
10
|
- In-browser template compilation:
|
|
@@ -21,7 +20,6 @@
|
|
|
21
20
|
### With a Bundler
|
|
22
21
|
|
|
23
22
|
- **`vue(.runtime).esm-bundler.js`**:
|
|
24
|
-
|
|
25
23
|
- For use with bundlers like `webpack`, `rollup` and `parcel`.
|
|
26
24
|
- Leaves prod/dev branches with `process.env.NODE_ENV` guards (must be replaced by bundler)
|
|
27
25
|
- Does not ship minified builds (to be done together with the rest of the code after bundling)
|
|
@@ -39,12 +37,10 @@
|
|
|
39
37
|
`esm-bundler` builds of Vue expose global feature flags that can be overwritten at compile time:
|
|
40
38
|
|
|
41
39
|
- `__VUE_OPTIONS_API__`
|
|
42
|
-
|
|
43
40
|
- Default: `true`
|
|
44
41
|
- Enable / disable Options API support
|
|
45
42
|
|
|
46
43
|
- `__VUE_PROD_DEVTOOLS__`
|
|
47
|
-
|
|
48
44
|
- Default: `false`
|
|
49
45
|
- Enable / disable devtools support in production
|
|
50
46
|
|
package/dist/vue.cjs.js
CHANGED
package/dist/vue.cjs.prod.js
CHANGED