Skip to content
This repository has been archived by the owner on Jan 14, 2020. It is now read-only.

Releases: ream/deprecated

v3.3.3

11 Oct 05:14
Compare
Choose a tag to compare

3.3.3 (2018-10-11)

Bug Fixes

  • don't inject initialDataKey to object decomposition (cce861f), closes #119

v3.3.2

10 Oct 11:02
Compare
Choose a tag to compare

3.3.2 (2018-10-10)

Bug Fixes

  • support absolute URL in client-side getInitialData redirect (06e59bd)

v3.3.1

10 Oct 10:29
Compare
Choose a tag to compare

3.3.1 (2018-10-10)

Bug Fixes

  • call getInitialData on client route change for components created with Vue.extend (979cf2a)

v3.3.0

10 Oct 08:14
9a16988
Compare
Choose a tag to compare

3.3.0 (2018-10-10)

Features

  • add outDir option to override .ream location (#112) (9a16988)

v3.2.10

10 Oct 07:51
Compare
Choose a tag to compare

3.2.10 (2018-10-10)

Bug Fixes

  • support getInitialData in components created with Vue.extend() (1807da0), closes #117

v3.2.9

09 Oct 10:43
Compare
Choose a tag to compare

3.2.9 (2018-10-09)

Bug Fixes

v3.0.0-rc.1

18 Feb 10:37
Compare
Choose a tag to compare

Breaking changes

  • In your entry file, you should now export router and store instead of createRouter and createStore.
  • Serve ./public folder at /public while no longer serve static folder at root path /, instead you can use rootPublicFiles to reach the same goal.
  • webpack-chain is replaced by conpack in extendWebpack option.

Version 1.0.0-beta.10

28 Apr 04:17
Compare
Choose a tag to compare
Version 1.0.0-beta.10 Pre-release
Pre-release

Breaking changes:

Upgraded to Vue 2.3, so in entry file, you must export a function which creates the router instance instead of exporting the router instance itself directly:

- const router = new Router()
- export default { router }

+ const createRouter = () => new Router()
+ export default { createRouter }

It's the same for vuex store instance.