1

我正在将 Vue-strap 警报组件与 Vue.js 一起使用。警报框工作正常,但是,我无法在指定持续时间后自动关闭警报框。这是我正在使用的组件代码。

 <alert :show.sync="showAlert" placement="top" duration="3000" type="success" width="400px" dismissable>
      <span class="icon-info-circled alert-icon-float-left"></span>
      <strong>Success</strong>
      <p>{{alertMessage}}</p> 
    </alert>

单击关闭 (x) 按钮时,警报框保持打开和关闭状态。这是一个使用警报组件的代码笔。
https://codepen.io/Taxali/pen/dKJpKY

任何建议,如何在 3 秒后自动关闭警报框?谢谢。

4

1 回答 1

1

根据source codeshow , setTimeout(_, duration) 仅在props 更改时才设置。所以有一个解决方法,你可以在方法中切换到,show或者你可以使用一个按钮来切换警报。falsetruemounted

setTimeoutVue 组件中的另一种方式。

 var vm = new Vue({
    components: {
        alert:VueStrap.alert,
    },
    el: "#app",
    data: {
        alertMessage:"Activity Saved Successfully.",
        showAlert:false
    },
    mounted() {
      this.showAlert = true
    }
})
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-strap/1.1.40/vue-strap.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">

<div id="app">
  
  <alert :show.sync="showAlert" placement="top" :duration="3000" type="success" width="400px" dismissable >
	  <span class="icon-info-circled alert-icon-float-left"></span>
	  <strong>Success</strong>
	  <p>{{alertMessage}}</p> 
	</alert>
  
</div>

于 2018-06-19T01:44:36.883 回答