19 lines
326 B
Vue
19 lines
326 B
Vue
<script>
|
|
module.exports = {
|
|
props: ['welcome-user'],
|
|
mounted () {
|
|
if (this.welcomeUser) {
|
|
$('#welcome-modal').modal('show');
|
|
}
|
|
},
|
|
methods: {
|
|
fetchIncidentTimeline () {
|
|
//
|
|
},
|
|
fetchSubscriberTimeline () {
|
|
//
|
|
}
|
|
}
|
|
}
|
|
</script>
|