Releases: ngsru/vue-server
Releases · ngsru/vue-server
0.4.15
0.4.14
0.4.13
0.4.12
0.4.11
Fixed
- Mixins are now support mixing
props
,methods
,events
,computed
,filters
,partials
andcomponents
. Previously supported only hooks. Vue.mixin
syntax fixed: now it's a function.- Fixed an issue with
:is
attribute causing an unwanted warning when used withv-for
and its instances data. - CSS styles are now merged correctly when the same property defined in different spelling types.
0.4.10
0.4.9
Fixed
- fixed an issue when a colon broke down a style value inside
:style
. Thanks to @pyrliu - fixed an issue where a filter on
v-for
recieves the value in incorrect format when iterating an object - fixed an issue where
Template Compiler
throws an error when trying to compile an attribute with quotes, for example:v-el:"some"
New
v-else
now supportsv-show
Note
If you're using gulp-vue-compile
module for pre-compiling templates, you should update it up to 0.3.8
. Will get an error instead.
0.4.8
0.4.7
New
- New DOM rebuilding system: reusing existing instances templates instead of blowing it away every time. Supposed to give 5-8% performance boost.
- Now able to use
name
option for recursive component invocation. - Now able to use
v-on
onvue-server
hooks. For example:v-on:created-be="onChildCreated"
.
Changed
- Code copies of original
vue
are removed. Insteadvue
package became a dependency. - Way of treating entities changed to be equal to browser behavior: special symbol codes inside templates are now get converted into actual symbols, attributes escaping way is also changed and improved.
Fixed
- An error when using
v-for
orv-repeat
on arrays withundefined
ofnull
as a value. - An error when providing
v-class
with and Object. - A loop when using
activateBe
inside components that being used withv-for
. Now throwing a warning. - An error when using
v-on
with expressions instead of function names, for examplev-on:change="value = true"
Note
If you're using gulp-vue-compile
module for pre-compiling templates, you should update it up to 0.3.6
. Will get an error instead.
0.4.6
Fixed
- fixed an issue with
v-for
building components with several top-level tags where unexpected<partial>
appeared. - fixed issue when global asset functions like
Vue.filter
didn't return appointed asset after its been already set. - fixed an issue when
computed
props resultedundefined
if used insidecreatedBe
hook. Those are now built before the hook for the first time and being rebuilt after its fired.
Changed
- Some warning messages got corrected.