Skip to content

Commit 19fa0bd

Browse files
committed
update tests for 1.0
1 parent 3cc7a1c commit 19fa0bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

example/advanced/app.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<a v-link="{ path: '/about' }">about</a>
2323
<a v-link="{ path: '/user/1234/profile/what' }">user</a>
2424
<a v-link="{ path: '/forbidden' }">forbidden</a>
25-
<router-view class="view" v-transition="test" transition-mode="out-in"></router-view>
25+
<router-view class="view" transition="test" transition-mode="out-in"></router-view>
2626
</div>
2727
</template>
2828

test/unit/specs/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ describe('Core', function () {
593593
})
594594
var spy = jasmine.createSpy()
595595
var App = Vue.extend({
596-
template: '<div><router-view v-transition="test"></router-view></div>',
596+
template: '<div><router-view transition="test"></router-view></div>',
597597
transitions: {
598598
test: {
599599
enter: function (el, cb) {

0 commit comments

Comments
 (0)