Releases: ngsru/vue-server
Releases · ngsru/vue-server
0.8.1
Fixed
- fixed the algorithm of picking up templates from several mixins.
0.8.0
New
- templates now could be applied from mixins
0.7.1
Fixed
- Slot API now works properly with content provided by
<template>
tags
0.7.0
New
- Computed properties are now calculated dynamically on its getting. It allows immediate recalculation. For example:
data: {
number: 1
},
computed: {
tenTimes() {
return this.number * 10;
}
},
createdBe: {
console.log(this.tenTimes) // 10;
this.number = 2;
console.log(this.tenTimes) // 20;
}
0.6.2
New
- Added component tracing path (formed by components nested names) for template warnings
0.6.1
Fixed
- Fixed a bug when
v-for
data context is not available inside slot
content
0.6.0
Fixed
- Fixed a problem with template compiler generates a different result on different runs on the same template. The result is always determined now.
0.5.0
New
- Added new option -
renderServer
. It accepts compiled template - a function from require('vue-server').compiler();
. May be useful for components preparation.
0.4.17
Fixed
- Fixed an error when
v-for
inside v-for
used a component's method with _
as first char of its name (private methods inheritance problem)
0.4.16
Fixed
- Props
type
validation now propely works with Objects made from named constructor functions
- Props values are now available at
data
functions