Skip to content

Commit

Permalink
[release] 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Nov 6, 2015
1 parent bcc1770 commit 6ce6e0c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 15 deletions.
17 changes: 8 additions & 9 deletions dist/vue.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Vue.js v1.0.6
* Vue.js v1.0.7
* (c) 2015 Evan You
* Released under the MIT License.
*/
Expand Down Expand Up @@ -146,7 +146,7 @@ return /******/ (function(modules) { // webpackBootstrap
extend(p, __webpack_require__(65))
extend(p, __webpack_require__(66))

Vue.version = '1.0.6'
Vue.version = '1.0.7'
module.exports = _.Vue = Vue

/* istanbul ignore if */
Expand Down Expand Up @@ -2971,8 +2971,8 @@ return /******/ (function(modules) { // webpackBootstrap
// either an element directive, or if/for
def: def || publicDirectives[dirName]
}
// check ref for v-for
if (dirName === 'for') {
// check ref for v-for and router-view
if (dirName === 'for' || dirName === 'router-view') {
descriptor.ref = _.findRef(el)
}
var fn = function terminalNodeLinkFn (vm, el, host, scope, frag) {
Expand Down Expand Up @@ -5507,10 +5507,11 @@ return /******/ (function(modules) { // webpackBootstrap
// transition related state
this.pendingRemovals = 0
this.pendingRemovalCb = null
// check dynamic component params
// create a ref anchor
// create a ref anchor
this.anchor = _.createAnchor('v-component')
_.replace(this.el, this.anchor)
// remove is attribute
this.el.removeAttribute('is')
// if static, build right now.
if (this.literal) {
this.setComponent(this.expression)
Expand Down Expand Up @@ -7587,9 +7588,7 @@ return /******/ (function(modules) { // webpackBootstrap
'Prop "' + name + '" expects a two-way binding type.'
)
}
/* eslint-disable no-cond-assign */
} else if (value = _.attr(el, attr)) {
/* eslint-enable no-cond-assign */
} else if ((value = _.attr(el, attr)) !== null) {
// has literal binding!
prop.raw = value
} else if (options.required) {
Expand Down
8 changes: 4 additions & 4 deletions dist/vue.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue",
"version": "1.0.6",
"version": "1.0.7",
"author": "Evan You <[email protected]>",
"license": "MIT",
"description": "Simple, Fast & Composable MVVM for building interactive interfaces",
Expand Down
2 changes: 1 addition & 1 deletion src/vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ extend(p, require('./api/dom'))
extend(p, require('./api/events'))
extend(p, require('./api/lifecycle'))

Vue.version = '1.0.6'
Vue.version = '1.0.7'
module.exports = _.Vue = Vue

/* istanbul ignore if */
Expand Down

0 comments on commit 6ce6e0c

Please sign in to comment.