Skip to content

Commit 6ce6e0c

Browse files
committed
[release] 1.0.7
1 parent bcc1770 commit 6ce6e0c

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

dist/vue.js

+8-9
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) {

dist/vue.min.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"author": "Evan You <[email protected]>",
55
"license": "MIT",
66
"description": "Simple, Fast & Composable MVVM for building interactive interfaces",

src/vue.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ extend(p, require('./api/dom'))
8585
extend(p, require('./api/events'))
8686
extend(p, require('./api/lifecycle'))
8787

88-
Vue.version = '1.0.6'
88+
Vue.version = '1.0.7'
8989
module.exports = _.Vue = Vue
9090

9191
/* istanbul ignore if */

0 commit comments

Comments
 (0)