22 lines
423 B
JavaScript
Executable File
22 lines
423 B
JavaScript
Executable File
const Component = require(`vn-print/core/component`);
|
|
const emailHeader = new Component('email-header');
|
|
|
|
module.exports = {
|
|
name: 'auth-code',
|
|
components: {
|
|
'email-header': emailHeader.build(),
|
|
},
|
|
props: {
|
|
code: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
device: {
|
|
type: String
|
|
},
|
|
ip: {
|
|
type: String
|
|
}
|
|
}
|
|
};
|