Merge pull request #273 from rijn/253

IE<=11 do not support toString.
This commit is contained in:
Aresn 2017-02-15 09:44:21 +08:00 committed by GitHub
commit d8de604ff5
6 changed files with 69 additions and 2 deletions

19
test/routers/notice.vue Normal file
View file

@ -0,0 +1,19 @@
<template>
<i-button @click="pop">Pop</i-button>
</template>
<script>
export default {
methods: {
pop () {
for (let i = 0; i < 6; i++) {
setTimeout(() => {
this.$Notice.open({
title: 'test',
duration: 1.5 + i
});
}, i * 500);
}
}
}
}
</script>