import action from "./action.js"; import actions from "./actions.js"; export default { props: [ "res", "actions" ], components: { action: action, actions: actions }, emits: [ 'actionexecuted' ], template: `
{{ res.name }}
Standard-Kostenstelle
  • {{ stdkst }}
keine
Organisations-Einheit
  • {{ oe }}
keine
`, methods: { }, computed: { mailtourl: function() { return 'mailto:' + this.res.email; }, telurl: function() { return 'tel:' + this.res.phone; } } };