Skip to content

Releases: ngsru/vue-server

0.8.1

30 Jul 11:49
Compare
Choose a tag to compare

Fixed

  • fixed the algorithm of picking up templates from several mixins.

0.8.0

30 Jul 11:48
Compare
Choose a tag to compare

New

  • templates now could be applied from mixins

0.7.1

06 Feb 10:49
Compare
Choose a tag to compare

Fixed

  • Slot API now works properly with content provided by <template> tags

0.7.0

17 Jan 07:33
Compare
Choose a tag to compare

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

30 Oct 12:53
Compare
Choose a tag to compare

New

  • Added component tracing path (formed by components nested names) for template warnings

0.6.1

30 Oct 08:34
Compare
Choose a tag to compare

Fixed

  • Fixed a bug when v-for data context is not available inside slot content

0.6.0

27 Oct 11:51
Compare
Choose a tag to compare

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

15 Sep 13:14
Compare
Choose a tag to compare

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

18 Aug 08:32
Compare
Choose a tag to compare

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

18 Aug 08:27
Compare
Choose a tag to compare

Fixed

  • Props type validation now propely works with Objects made from named constructor functions
  • Props values are now available at data functions