build version 400

This commit is contained in:
Mohit Panjwani
2020-12-02 17:54:08 +05:30
parent 326508e567
commit 89ee58590c
963 changed files with 62887 additions and 48868 deletions

View File

@ -1,18 +1,18 @@
<script>
let mailgunComponent = {
template: '#mailgun-template'
template: '#mailgun-template',
}
let sendgridComponent = {
template: '#sendgrid-template'
template: '#sendgrid-template',
}
let sparkPostComponent = {
template: '#sparkpost-template'
template: '#sparkpost-template',
}
let smtpComponent = {
template: '#smtp-template'
template: '#smtp-template',
}
export default {
@ -20,26 +20,26 @@ export default {
mailgun: mailgunComponent,
sendgrid: sendgridComponent,
sparkpost: sparkPostComponent,
smtp: smtpComponent
smtp: smtpComponent,
},
props: {
view: {
type: Array,
require: true,
default: Array
}
default: Array,
},
},
data () {
data() {
return {
currentView: 'mailgun'
currentView: 'mailgun',
}
},
mounted () {
mounted() {
let views = ['mailgun', 'sendgrid', 'sparkpost', 'smtp']
if (this.view && views.indexOf(this.view) > -1) {
this.currentView = this.view
};
}
}
},
}
</script>