Vue V2.0.0-rc.5 Released, Vue.js is the JavaScript library that builds the Web interface (Basic tutorial qkxue.net), provides data-driven components, and a simple and flexible API that makes MVVM simpler.
This release has some new features:
Custom directives now get a new hook:inserted, which'll be is called when the bound element have been inserted into its par ENT node. (Note This is only guarantees parent node presence and not in-document)
SSR Hydration now allows the client to hydrate a server-rendered node when it has no children. (previously it would throw an error and bail out with a full re-render) This allows the server to render a static ' app shell ' and let the ' client pick it up.
BUG Fixes:
Reverted custom directive bind call timing due to it leading to incorrect V-show property switch timing during initial ren Der.
#3556 fix v-on patching for cloned slot nodes
#3559 remove unnecessary appear check in V-show
#3595 fix incorrect duplicate slot warning when they is under V-if/v-else
#3611 fix v-for patching error by keying nested children by default
Vue Tutorial: Lightweight JavaScript Framework