Evan You
f104b84b9d
build: tweak release note file default name
7 years ago
Evan You
ec4b1be42a
revert: perf: remove src directory from npm module ( #6072 )
adding src dir back to npm package because projects that create
custom renderers (e.g. nativescript-vue) relie on it.
7 years ago
Nick Messing
3d14e855e4
fix: checkbox v-model="array" ignore false-value ( #6180 )
close #6178
7 years ago
Evan You
303655116f
fix(provide/inject): merge provide properly from mixins
close #6175
7 years ago
Evan You
fc3d7cd7a9
fix: work around IE/Edge bug when accessing document.activeElement from iframe
close #6157
7 years ago
Evan You
eb9168cfc1
feat: warn when assigning to computed property with no setter
close #6078
7 years ago
Evan You
a8ac129a58
fix: ensure looseEqual is not dependant on key enumeration order
close #5908
7 years ago
Evan You
9b4dbba384
fix(transition): should trigger transition hooks for v-show in ie9
fix #5525
7 years ago
Evan You
082fc3967d
fix(parser): only ignore the first newline in <pre>
fix #6146
7 years ago
Evan You
1713061126
fix(v-on): revert component root data.on/data.nativeOn behavior for
weex-vue-render compat
close #6109
7 years ago
AchillesJ
06b9b0bbad
fix(v-bind): respect .prop modifier on components ( #6159 )
7 years ago
laoxiong
d03fa26687
fix(compile): properly generate comments with special character ( #6156 )
close #6150
7 years ago
AchillesJ
b0f00e31e7
fix(provide/inject): resolve inject properly from mixins ( #6107 )
fix #6093
7 years ago
Evan You
c70addf7d1
fix(v-model): use stricter check for <select> option update
close #6112
7 years ago
Eduardo San Martin Morote
be3dc9c6e9
fix: include boolean in isPrimitive check ( #6127 )
suppresses key warning for boolean values, closes #6126
7 years ago
Evan You
381b48503a
build: release 2.4.1
7 years ago
Evan You
297ded6d27
build: build 2.4.1
7 years ago
Evan You
83037828d7
build: update release script
7 years ago
Evan You
a7615ef053
build: fix postinstall script causing user install errors
7 years ago
Evan You
ac3d1eaea3
build: release 2.4.0
7 years ago
Evan You
1bdea8221a
build: build 2.4.0
7 years ago
Evan You
529e3db6ae
build: update build script
7 years ago
Evan You
e0ca894dfb
test: improve coverage
7 years ago
Evan You
92a5e93ad0
build: update release note script
7 years ago
Evan You
086e6d98f4
fix: handle arrays in v-on object syntax
7 years ago
Evan You
dc1bca1361
chore: document new ssr methods in vue-template-compiler
7 years ago
Evan You
67fe6cb823
test: use latest mobile browsers on saucelabs
7 years ago
Alexandr Subbotin
e7615737f1
perf: remove src directory from npm module ( #6072 )
`src` directory is not used by node package. Removing this directory reduces size of `.tgz` package by 112kb and saves 840kb on each node projects, where vue.js is installed
7 years ago
Chris Fritz
754e041b91
remove references to gitter; use chat.vuejs.org for discourse ( #6084 )
7 years ago
Evan You
485e7403e4
test: make tests pass in IE
7 years ago
Evan You
91deb4fd91
fix: multiple merged vnode hooks not invoked properly
fix #6076
7 years ago
Evan You
6bf97721f1
feat(ssr): inheritAttrs support in SSR
7 years ago
Evan You
1bf98b0a99
test: adjust transition tests for firefox
7 years ago
Evan You
606666d5a9
test: fix Object.prototype.watch related warnings
7 years ago
Evan You
1f9e924971
feat(types): add declaration for inheritAttrs
7 years ago
Evan You
61187596b9
feat(core): $attrs, $listeners & inheritAttrs option
New features intended for easier creation of higher-order components.
- New instance properties: $attrs & $listeners. these are essentially aliases
of $vnode.data.attrs and $vnode.data.on, but are reactive.
- New component option: inheritAttrs. Turns off the default behavior where
parent scope non-prop bindings are automatically inherited on component root
as attributes.
close #5983 .
7 years ago
Evan You
afa108238f
test: remove unecessary id in test case
7 years ago
Evan You
1b7ddd7a35
feat(types): expose $vnode
7 years ago
Evan You
11614d63b7
feat(v-on): support v-on object syntax with no arguments
Note this does not support modifiers and is meant to be used for handling
events proxying in higher-order-components.
7 years ago
Evan You
b0b6b7e972
build: upgrade rollup
7 years ago
Evan You
0a9aab510b
fix(v-model): fix input change check for type="number"
The change should only apply to the .number modifier, not type="number".
fix #6069
7 years ago
Evan You
fed602b90b
refactor: also clone vnode.asyncFactory
7 years ago
chengchao
4d680794a5
fix(parser): the first newline following pre and textarea tag should be ignored ( #6022 )
fix #6022
7 years ago
Evan You
a1d1145c91
fix(v-model): should generate component-specific code for tags with "is" attribute
fix #6066
7 years ago
Evan You
8d66691ee2
fix(core): should preserve reactivity-ness of injected objects
fix #5913
7 years ago
Evan You
5dbca4e3c4
style: tweak import style
7 years ago
Hanks
b1512d8b13
feat(weex): implement "weex.supports" api to support feature detection ( #6053 )
* feat(weex): add "weex.supports" api for feature detection
* test(weex): add test case for weex.supports and related methods
7 years ago
Hanks
0d6ad12a48
refactor(weex): sync recent changes of Weex ( #6028 )
* compile bundle on native side if 'compileBundle()' is available on
native side.
* refactor sendTasks
* reset renderer.compileBundle
* v2.2.2-weex.1
* v2.2.2-weex.2 && fixed memory leak
* call C++ timer instead of WxTimerModule in weex-vue-framwork
* v2.2.2-weex.4
* v2.2.2-weex.5
* v2.2.6-weex.1
* style(weex): fix eslint
* test(weex): fix test case for weex callback manager
7 years ago
Rahul Kadyan
306997eaf4
fix(core): add merge strategy for provide option ( #6025 )
Fix #6008
7 years ago
AchillesJ
254d85cfc4
fix(ref): refactor function registerRef ( #6039 )
fix #5997
7 years ago