Skip to content

Commit 3911c68

Browse files
committed
adjust
1 parent 437e9ae commit 3911c68

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ import MULTI_DATA_MODULE from 'js-multi-data-module';
9090
},
9191
Complete: function(data, list){
9292
console.log(data, list);
93+
},
94+
Fail: function(err){
95+
console.log(err);
9396
}
9497
}
9598
});

examples/index.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ <h3>Advanced Use</h3>
243243
animation: motionChange 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s 1 forwards;
244244
}
245245
</style>
246-
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
246+
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14"></script>
247247
<script>
248248
var app = new Vue({
249249
el: '#app',
@@ -328,7 +328,10 @@ <h3>Advanced Use</h3>
328328
setTimeout(function(){
329329
_that.flgLoading = false;
330330
},1000)
331-
}
331+
},
332+
Fail: function(err){
333+
console.log(err);
334+
},
332335
}
333336
});
334337
},

0 commit comments

Comments
 (0)