vue-bot
f7cb047e60
chore: update backers [ci skip] ( #12119 )
3 years ago
Eduardo San Martin Morote
612fb89547
build: release 2.6.14
4 years ago
Eduardo San Martin Morote
8f6c4c3dbd
build: build 2.6.14
4 years ago
Sebastian Krüger
c52427b0d2
fix(types): async Component types ( #11906 )
* Update options.d.ts
* Create async-component-test.ts
* add generics to Component ad EsModuleComponent
* remove not needed , and ;
* revert unrelated changes
* revert unrelated changes
* revert unrelated changes
* revert unrelated changes
* optimize EsModuleImports
* Update async-component-test.ts
4 years ago
Jason
80e7730946
feat(ssr): vue-ssr-webpack-plugin compatible with webpack 5 ( #12002 )
* feat(ssr): vue-ssr-webpack-plugin compatible with webpack 5
* chore(ssr): remove webpack from peerDependencies
4 years ago
Eduardo San Martin Morote
38f71de380
fix(v-slot): fix scoped slot normalization combined with v-if ( #12104 )
4 years ago
Eduardo San Martin Morote
67901e78ef
test(ssr): add missing test for async component in slot
4 years ago
Eduardo San Martin Morote
18660336a0
build: release 2.6.13
4 years ago
Eduardo San Martin Morote
f34f6bb230
build: build 2.6.13
4 years ago
Evan You
f038000157
refactor: check is function for fallback slots
4 years ago
Evan You
d6ac00f77c
chore: display more oc sponsors on readme [ci skip]
4 years ago
Ikko Ashimine
0ff1356ef7
chore: fix typo in README.md [ci skip] ( #12064 )
4 years ago
vue-bot
f2a6a1b8d3
chore: update sponsors [ci skip] ( #12054 )
4 years ago
Evan You
df4e385c8f
chore: fix opencollective silver sponsors in backers.md [ci skip]
4 years ago
dependabot[bot]
bb9190b302
build(deps): bump ssri from 6.0.1 to 6.0.2 ( #12047 )
Bumps [ssri](https://github.com/npm/ssri ) from 6.0.1 to 6.0.2.
- [Release notes](https://github.com/npm/ssri/releases )
- [Changelog](https://github.com/npm/ssri/blob/v6.0.2/CHANGELOG.md )
- [Commits](https://github.com/npm/ssri/compare/v6.0.1...v6.0.2 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4 years ago
vue-bot
e7cf0634f5
chore: update sponsors [ci skip] ( #12021 )
4 years ago
Eduardo San Martin Morote
e7baaa1205
fix(keep-alive): cache what is really needed not the whole VNode data ( #12015 )
Co-authored-by: zrh122 <1229550935@qq.com>
4 years ago
WORMSS
2b93e86aa1
fix(types): make $refs undefined possible ( #11112 )
Added undefined as a return type of $refs as it was quite hard to convince typescript that something COULD be undefined if you type in a ref that doesn't exist,
I also changed the two array statements from `Element[] | Vue[]` to `(Element | Vue)[]` because it's not guaranteed that they are ALL Elements or they are ALL Vue components. (Very likely, yes, but not always)
For example
```html
<template v-for="(a, index) of b">
<div v-if="index % 2 === 0" ref="test"></div>
<my-component v-else ref="test"></my-component>
</template>
```
4 years ago
contribu
52608302e9
fix(core): fix sameVnode for async component ( #11107 )
Co-authored-by: mac2 <mac2@example.com>
4 years ago
hello-brsd
e4dea59f84
fix(errorHandler): async error handling for watchers ( #9484 )
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
4 years ago
wangzongxu
3ad60fea73
feat(warn): warn computed conflict with methods ( #10119 )
Co-authored-by: wangzongxu <wangzongxu@vipkid.com.cn>
4 years ago
Mattia Trapani
c6d7a6fce7
fix(v-on): avoid events with empty keyCode (autocomplete) ( #11326 )
4 years ago
Eduardo San Martin Morote
ce457f9f4d
fix(slot): add a function to return the slot fallback content ( #12014 )
Co-authored-by: zrh122 <1229550935@qq.com>
4 years ago
ygj6
77b5330c54
fix: force update between two components with and without slot ( #11795 )
4 years ago
pooya parsa
af54514cf9
fix: handle async placeholders in normalizeScopedSlot ( #11963 )
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
4 years ago
zrh122
0603ff695d
fix(warns): modify `maybeComponent` function in parser ( #10167 )
fixes #10152
4 years ago
Zen
5c459f0fd6
fix(types): allow symbol & boolean for vnode key ( #11914 )
4 years ago
vue-bot
6ec33f70d9
chore: update backers [ci skip] ( #12004 )
4 years ago
vue-bot
0d223a3604
chore: update sponsors [ci skip] ( #11997 )
Co-authored-by: Evan You <yyx990803@gmail.com>
4 years ago
vue-bot
cc807d2d30
chore: update backers [ci skip] ( #11996 )
Co-authored-by: Evan You <yyx990803@gmail.com>
4 years ago
dependabot[bot]
d90ce764fc
build(deps): bump y18n from 4.0.0 to 4.0.1 ( #11987 )
4 years ago
Eduardo San Martin Morote
af5e05d87e
fix: give correct namespace in foreignObject ( #11576 )
Fix #11575
4 years ago
Volodymyr I
7e5dc6bd9e
fix(ssr): inheritAttrs false adds attributes to html ( #11706 )
4 years ago
Flo Edelmann
e0274e4320
fix(types): add types for Vue.util.warn function ( #11964 )
See https://github.com/vuejs/vue/blob/v2.6.12/src/core/util/debug.js#L18-L26
4 years ago
Ben Delaney
987f322b8f
fix: pause dep collection during immediate watcher invocation ( #11943 )
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
4 years ago
shadowings-zy
fb16d7bfa1
fix(vdom): avoid executing root level script tags ( #11487 )
fix #11483
4 years ago
AjiTae
fa1f81e910
fix(props): support BigInt in props type validation ( #11191 )
4 years ago
shadowings-zy
c42b7066ca
fix(compiler): Allow BigInt usage in templates ( #11152 )
4 years ago
Mohammad Albakri
69401311f4
fix(warn): better message with no constructors props ( #9241 )
Co-authored-by: Siddhesh Mhadnak <siddhesh.mhadnak@outlook.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
4 years ago
Kawokas
7c75462354
fix(types): changed expression type to optional string ( #11189 )
fix #10871
4 years ago
Sebastian Speitel
2488a6a1e9
perf: preinitialize typeCheck RegExp ( #10990 )
4 years ago
Des Preston
55a30cf9db
fix(compiler): avoid converting &nbps; to spaces ( #11065 )
4 years ago
Andrzej Swaton
3d46692ee4
feat(warns): avoid warning native modifiers on dynamic components ( #11052 )
Co-authored-by: Andrzej Swaton <andrzej@diligen.com>
4 years ago
vue-bot
529016bca9
chore: update sponsors [ci skip] ( #11962 )
4 years ago
dependabot[bot]
e20581fb40
build(deps-dev): bump lodash from 4.17.13 to 4.17.19 ( #11522 )
Bumps [lodash](https://github.com/lodash/lodash ) from 4.17.13 to 4.17.19.
- [Release notes](https://github.com/lodash/lodash/releases )
- [Commits](https://github.com/lodash/lodash/compare/4.17.13...4.17.19 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4 years ago
dependabot[bot]
e63f04eb75
build(deps): bump http-proxy from 1.17.0 to 1.18.1 ( #11653 )
Bumps [http-proxy](https://github.com/http-party/node-http-proxy ) from 1.17.0 to 1.18.1.
- [Release notes](https://github.com/http-party/node-http-proxy/releases )
- [Changelog](https://github.com/http-party/node-http-proxy/blob/master/CHANGELOG.md )
- [Commits](https://github.com/http-party/node-http-proxy/compare/1.17.0...1.18.1 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4 years ago
dependabot[bot]
085c97a7ee
build(deps): bump handlebars from 4.4.3 to 4.7.7 ( #11948 )
Bumps [handlebars](https://github.com/wycats/handlebars.js ) from 4.4.3 to 4.7.7.
- [Release notes](https://github.com/wycats/handlebars.js/releases )
- [Changelog](https://github.com/handlebars-lang/handlebars.js/blob/master/release-notes.md )
- [Commits](https://github.com/wycats/handlebars.js/compare/v4.4.3...v4.7.7 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4 years ago
dependabot[bot]
3a40b403c5
build(deps): bump ini from 1.3.5 to 1.3.8 ( #11947 )
Bumps [ini](https://github.com/isaacs/ini ) from 1.3.5 to 1.3.8.
- [Release notes](https://github.com/isaacs/ini/releases )
- [Commits](https://github.com/isaacs/ini/compare/v1.3.5...v1.3.8 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4 years ago
dependabot[bot]
ef84394cc3
build(deps): bump elliptic from 6.5.3 to 6.5.4 ( #11946 )
Bumps [elliptic](https://github.com/indutny/elliptic ) from 6.5.3 to 6.5.4.
- [Release notes](https://github.com/indutny/elliptic/releases )
- [Commits](https://github.com/indutny/elliptic/compare/v6.5.3...v6.5.4 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4 years ago
vue-bot
5255841aaf
chore: update sponsors [ci skip] ( #11883 )
4 years ago