salix/print/templates/email/sepa-core/sepa-core.js

28 lines
688 B
JavaScript
Raw Normal View History

2022-09-26 06:07:45 +00:00
const Component = require(`vn-print/core/component`);
2019-11-04 12:55:20 +00:00
const emailHeader = new Component('email-header');
const emailFooter = new Component('email-footer');
const attachment = new Component('attachment');
const attachments = require('./attachments.json');
2019-11-04 12:55:20 +00:00
module.exports = {
name: 'sepa-core',
data() {
return {attachments};
},
2019-11-04 12:55:20 +00:00
components: {
'email-header': emailHeader.build(),
'email-footer': emailFooter.build(),
'attachment': attachment.build()
},
props: {
2022-09-26 06:07:45 +00:00
id: {
2022-10-28 13:53:57 +00:00
type: Number,
required: true
},
companyId: {
2022-10-28 13:53:57 +00:00
type: Number,
required: true
}
2019-11-04 12:55:20 +00:00
}
};