Files
cachet-docker/resources/assets/js/components/dashboard/ReportSchedule.vue
2018-11-14 16:06:16 +09:00

31 lines
746 B
Vue

<script>
module.exports = {
data () {
return {
template: null,
name: '',
message: ''
}
},
methods: {
getTemplate (template) {
axios.get('/dashboard/api/incidents/templates', {
params: {
slug: template
}
}).then(response => {
this.name = response.data.name
this.message = response.data.template
}).catch(response => {
(new Cachet.Notifier()).notify('There was an error finding that template.');
})
}
},
watch: {
'template' (template) {
this.getTemplate(template)
}
}
}
</script>