update: vuejs-templates/webpack to v1.3.1

This commit is contained in:
xidedix
2018-04-05 18:59:29 +02:00
parent 6de23dce60
commit 123737e20c
78 changed files with 3075 additions and 2025 deletions
+18 -18
View File
@@ -69,7 +69,7 @@
header-tag="header"
footer-tag="footer">
<div slot="header">
<i class="fa fa-align-justify"></i>Alerts</strong>
<i class="fa fa-align-justify"></i>Alerts
<small>with additional content</small>
</div>
<b-alert show variant="success">
@@ -91,7 +91,7 @@
header-tag="header"
footer-tag="footer">
<div slot="header">
<i class="fa fa-align-justify"></i>Alerts</strong>
<i class="fa fa-align-justify"></i>Alerts
<small>dismissible</small>
</div>
<div>
@@ -113,7 +113,7 @@
header-tag="header"
footer-tag="footer">
<div slot="header">
<i class="fa fa-align-justify"></i>Alerts</strong>
<i class="fa fa-align-justify"></i>Alerts
<small>auto dismissible</small>
</div>
<div>
@@ -148,22 +148,22 @@
</template>
<script>
export default {
name: 'alerts',
data () {
return {
dismissSecs: 10,
dismissCountDown: 0,
showDismissibleAlert: false
}
export default {
name: 'alerts',
data () {
return {
dismissSecs: 10,
dismissCountDown: 0,
showDismissibleAlert: false
}
},
methods: {
countDownChanged (dismissCountDown) {
this.dismissCountDown = dismissCountDown
},
methods: {
countDownChanged (dismissCountDown) {
this.dismissCountDown = dismissCountDown
},
showAlert () {
this.dismissCountDown = this.dismissSecs
}
showAlert () {
this.dismissCountDown = this.dismissSecs
}
}
}
</script>