Skip to content

Commit e5587f7

Browse files
committed
1.0.7
1 parent ac2787a commit e5587f7

File tree

4 files changed

+16
-17
lines changed

4 files changed

+16
-17
lines changed

src/guide/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
title: Installation
33
type: guide
44
order: 0
5-
vue_version: 1.0.6
5+
vue_version: 1.0.7
66
dev_size: "241.91"
7-
min_size: "72.45"
8-
gz_size: "23.80"
7+
min_size: "72.50"
8+
gz_size: "23.82"
99
---
1010

1111
> **Compatibility Note:** Vue.js does not support IE8 and below.

themes/vue/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
google_analytics: UA-46852172-1
22
root_domain: vuejs.org
3-
vue_version: 1.0.6
3+
vue_version: 1.0.7

themes/vue/source/js/vue.js

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vue.js v1.0.6
2+
* Vue.js v1.0.7
33
* (c) 2015 Evan You
44
* Released under the MIT License.
55
*/
@@ -146,7 +146,7 @@ return /******/ (function(modules) { // webpackBootstrap
146146
extend(p, __webpack_require__(65))
147147
extend(p, __webpack_require__(66))
148148

149-
Vue.version = '1.0.6'
149+
Vue.version = '1.0.7'
150150
module.exports = _.Vue = Vue
151151

152152
/* istanbul ignore if */
@@ -2971,8 +2971,8 @@ return /******/ (function(modules) { // webpackBootstrap
29712971
// either an element directive, or if/for
29722972
def: def || publicDirectives[dirName]
29732973
}
2974-
// check ref for v-for
2975-
if (dirName === 'for') {
2974+
// check ref for v-for and router-view
2975+
if (dirName === 'for' || dirName === 'router-view') {
29762976
descriptor.ref = _.findRef(el)
29772977
}
29782978
var fn = function terminalNodeLinkFn (vm, el, host, scope, frag) {
@@ -5507,10 +5507,11 @@ return /******/ (function(modules) { // webpackBootstrap
55075507
// transition related state
55085508
this.pendingRemovals = 0
55095509
this.pendingRemovalCb = null
5510-
// check dynamic component params
5511-
// create a ref anchor
5510+
// create a ref anchor
55125511
this.anchor = _.createAnchor('v-component')
55135512
_.replace(this.el, this.anchor)
5513+
// remove is attribute
5514+
this.el.removeAttribute('is')
55145515
// if static, build right now.
55155516
if (this.literal) {
55165517
this.setComponent(this.expression)
@@ -7587,9 +7588,7 @@ return /******/ (function(modules) { // webpackBootstrap
75877588
'Prop "' + name + '" expects a two-way binding type.'
75887589
)
75897590
}
7590-
/* eslint-disable no-cond-assign */
7591-
} else if (value = _.attr(el, attr)) {
7592-
/* eslint-enable no-cond-assign */
7591+
} else if ((value = _.attr(el, attr)) !== null) {
75937592
// has literal binding!
75947593
prop.raw = value
75957594
} else if (options.required) {

themes/vue/source/js/vue.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)