iview/examples/routers/notice.vue
梁灏 833501a4fa support Notice
support Notice
2017-03-09 22:32:57 +08:00

21 lines
553 B
Vue

<template>
<i-button type="primary" @click.native="time">打开提醒</i-button>
</template>
<script>
export default {
methods: {
time () {
this.$Notice.open({
title: '这是通知标题',
desc: '这条通知不会自动关闭,需要点击关闭按钮才可以关闭。'
});
}
},
mounted () {
this.$Notice.config({
top: 150,
duration: 3
});
}
}
</script>