import action from "./action.js"; import actions from "./actions.js"; export default { props: [ "res", "actions" ], components: { action: action, actions: actions }, emits: [ 'actionexecuted' ], template: `
{{ res.gn }} {{ res.sn }}
`, methods: { }, computed: { mailtourl: function() { return 'mailto:' + this.res.mail; } } };