Skip to content

Commit b7dd925

Browse files
committed
vue next post
1 parent bae4b37 commit b7dd925

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

source/_posts/vue-next.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
title: Vue.js 0.10.6, and what's next
2+
date: 2014-07-29 00:04:55
3+
---
4+
5+
## 0.10.6
6+
7+
Vue.js 0.10.6 has been released! This is another small bug-fix release and will be the last maintainance version before the next major release.
8+
9+
<!-- more -->
10+
11+
- fix `v-style` error when value is falsy or a number. ( thanks to [@dmfilipenko](https://github.com/dmfilipenko) )
12+
- fix the built-in `currency` filter error when value is a string ( thanks to [@dmfilipenko](https://github.com/dmfilipenko) )
13+
- fix `Vue.require` for building with Component v1.0+ ( thanks to [@kewah](https://github.com/kewah) )
14+
- Allow template nodes to be passed as a template option ( thanks to [@jordangarcia](https://github.com/jordangarcia) )
15+
- `vm.$destroy()` now accepts an optional argument `noRemove`. When passed in as `true` it will leave the vm's DOM node intact after the vm is destroyed.
16+
17+
## Vue-next
18+
19+
Some of you might have noticed there is a [next](https://github.com/yyx990803/vue/tree/next) branch in the repo. And yes, I am re-writing Vue.js from scratch. There are two main reasons:
20+
21+
- Fix some issues that are caused by design flaws in the current version. Because these changes affect the design of some core modules, it is actually easier to rewrite than to apply on the current codebase.
22+
- Improve general code quality (in particular, `compiler.js` as of now is a big pile of mess, and comments are not consistent across the codebase.)
23+
24+
Take note that the `next` branch is still in **very** early stage. The internals will change a lot, and when it comes out it **will** break current applications. Despite that I will try to keep the API changes to a minimum. Major differences with current 0.10 branch are documented in [`changes.md`](https://github.com/yyx990803/vue/blob/next/changes.md). The list is obviously incomplete and subject to change, some of them are simply ideas, but it at least gives you a taste of what to expect, and I'd appreicate your feedback on any of the topics.
25+
26+
Share your thoughts at [vuejs/Discussion](https://github.com/vuejs/Discussion/issues).

0 commit comments

Comments
 (0)