import action from "./action.js"; import actions from "./actions.js"; export default { props: [ "res", "actions" ], components: { action: action, actions: actions }, emits: [ 'actionexecuted' ], template: `
`, methods: { }, computed: { mailtourl: function() { return 'mailto:' + this.res.email; }, studentImage: function () { if (!this.res.foto) return; return 'data:image/jpeg;base64,'.concat(this.res.foto); }, } };