Evan You
ceab0b71d0
fix functional components that return string or nothing ( fix #3919 )
8 years ago
Evan You
7ca58b6cdf
small tweak
8 years ago
defcc
a9417e4e4f
select change event fix ( #3922 )
* if select binding not changed, then needRest should be set to false, and no change event should be emitted
* update code style
8 years ago
Evan You
617b9982e0
[build] 2.0.2
8 years ago
Evan You
864ef21a7d
fix deeply nested keep-alive components not being destroyed ( fix #3882 )
8 years ago
Evan You
7570a3c566
test for directive refactor ( fix #3848 )
8 years ago
Evan You
1fa3844dc2
refactor directive update implementation
8 years ago
Evan You
4a74883864
improve mergeVNodeHook logic
8 years ago
Evan You
e9bf5d1cd9
add warning for using v-model on v-for alias
8 years ago
Evan You
32383e5fa3
remove name option warning during instantiation
8 years ago
Evan You
4740597b66
include component file location in warning if available
8 years ago
Evan You
1bb7cba0e0
improve event warning with component information ( close #3831 )
8 years ago
defcc
2ee6ef205d
replace special terminators chars ( #3903 )
8 years ago
Evan You
5300ef7819
fix style module removing styles with value 0 on update ( fix #3905 )
8 years ago
Evan You
d0cfd549ba
Revert "fix select multiple first option auto-selected in Chrome/FF ( fix #3852 )"
This reverts commit f9bef75a34
.
8 years ago
defcc
8bb1e58df0
fix multiple select render ( #3908 )
* fix multiple select render. The mutliple attribute of select dosen't apply at first, so the mutli selected option dosen't work when patching
* keep the vnode.data the same as before
8 years ago
Evan You
cc4c066989
fix coverage
8 years ago
Evan You
484e538df8
fix lint
8 years ago
Evan You
5b4b9269a5
avoid updating input value during IME composition ( fix #3894 )
8 years ago
Evan You
be6e050b89
fix `mounted` not called for manually mounted instance with parent ( fix #3898 )
8 years ago
Evan You
86f0d114ec
fix dependency collection for multi-nested arrays ( fix #3883 )
8 years ago
Evan You
3446d1485d
support functional components as named slot ( fix #3872 )
8 years ago
Evan You
5925ad3bd2
tweak select IE fix to reduce duplicate call
8 years ago
Evan You
f9bef75a34
fix select multiple first option auto-selected in Chrome/FF ( fix #3852 )
8 years ago
Evan You
74e4e11b44
fix v-on handler with whitespaces ( fix #3893 )
8 years ago
defcc
8d2fc8e8ac
add getTypeList to process mutli-type prop ( #3885 )
* add getTypeList to process mutli-type prop
* update arrow function
* refactor to isBooleanType for performance
* update isBoolean check
8 years ago
Chris Fritz
de199f9bbd
allow 2 root nodes with v-if and v-else ( #3887 )
* allow 2 root nodes with v-if and v-else
* fix compiler-options test with less specific text
8 years ago
defcc
f59e903d0b
setTimeout fallback update ( #3868 )
* - update setTimeout fallback
- reset cachedWrite.cacheBuffer with .length = 0 for better efficient
* update style
* revert cacheBuffer
* update to arrow function
8 years ago
Evan You
f35f7e35cd
add v-model dynamic type warning
8 years ago
Evan You
addb461e3c
fix ssr bundle renderer error on commonjs exports ( fix #3867 )
8 years ago
Phan An
adae5caaee
Make forAlias regex lazy ( fixes #3846 ) ( #3859 )
The current forAliasRE has the first rule greedy (`.*?`), which will
attempt to match whatever it can. This exposes a bug (#3846 ), where the
regex fails if the template happens to have " in " or " of " in its last
group. For instance, with the template `for key in [{body: 'Hey in
body'}]`, current regex will capture the last group as `body'}]` instead
of `[{body: 'Hey in body'}]`. This commit aims to fix this issue by
making the first rule lazy instead.
8 years ago
Eduardo San Martin Morote
c835ce57ff
Allow text nodes on static templates in components ( #3826 )
Fix #3824
8 years ago
Evan You
d69b64f01f
[build] 2.0.1
8 years ago
Evan You
3ad68b96e2
[build] 2.0.0
8 years ago
Evan You
51aa3e594a
comment
8 years ago
Evan You
99ea0f8229
adjust named slot resolve check ( fix #3819 )
8 years ago
Evan You
47ee6abfc6
remove codegen v-for truthiness check ( fix #3817 )
8 years ago
Evan You
6d4bdb5ff1
fix style binding for falsy numbers ( fix #3816 )
8 years ago
Evan You
8298323108
add <template> key warning
8 years ago
Evan You
f1e37f6002
do not add list key to text nodes ( fix #3810 )
8 years ago
Evan You
e468ba078e
fix coverage
8 years ago
Evan You
0e8af343a7
check MutationObserver native-ness
8 years ago
Dan Reeves
e0698b2ebd
warn user calling Vue() without new ( #3793 )
8 years ago
fergaldoyle
790c99cdb4
fix IE/Edge select remembering selection ( #3803 )
* fix IE/Edge select remembering selection
* Use const over let
8 years ago
Evan You
1d3811af78
update comments
8 years ago
Evan You
ccd44f3f41
[build] 2.0.0-rc.8
8 years ago
Evan You
310f5a2f5f
tweak v-model type=file warning phrasing
8 years ago
Eduardo San Martin Morote
b8095bf7b8
Warn when using v-model with input[type=file] ( #3791 )
8 years ago
Evan You
467572830f
fix coverage
8 years ago
Evan You
43b489b11f
revert nextTick to microtask semantics by using Promise.then ( fix #3771 )
8 years ago