You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 'dev' of https://github.com/vuejs/vue:
build: use cross-platform hook installation with shelljs
build: move test config files into /test
build: add script for generating release note
build: add git commit message validation
fix(v-model): use consistent behavior during IME composition for other text-like input types (fixvuejs#5902)
simplify source with rest params
fix slot resolved incorrect with abstract component (fixvuejs#5888) (vuejs#5895)
test:improve reserved props test
test:add bind object test
fix:when using object syntax in v-bind, special attribute have no effect
Be able to use string type index in array (vuejs#5889)
Merge inject when extending a component (vuejs#5827)
# Conflicts:
# .gitignore
# src/core/util/options.js
Version
2.3.4
Reproduction link
https://jsfiddle.net/f055yu68/
Steps to reproduce
Just open reproduction link
What is expected?
"foo-content" is shown at foo slot.
What is actually happening?
"foo-content" is shown at default slot.
slot="foo"
specification is just ignoredslot name is stored in
data
, and lost at this line.vue/src/core/vdom/create-component.js
Line 171 in 9cf6646
Is this an intentional behaviour ?
The text was updated successfully, but these errors were encountered: