This repository has been archived by the owner on Jan 14, 2020. It is now read-only.
Releases: ream/deprecated
Releases · ream/deprecated
v3.3.3
v3.3.2
v3.3.1
v3.3.0
v3.2.10
v3.2.9
v3.0.0-rc.1
Breaking changes
- In your entry file, you should now export
router
andstore
instead ofcreateRouter
andcreateStore
. - Serve
./public
folder at/public
while no longer servestatic
folder at root path/
, instead you can userootPublicFiles
to reach the same goal. webpack-chain
is replaced byconpack
inextendWebpack
option.
Version 1.0.0-beta.10
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.