import action from "./action.js"; export default { props: [ "res", "actions" ], components: { action: action }, emits: [ 'actionexecuted' ], template: `
`, methods: { hasicon: function(index) { return (typeof this.actions[index].icon !== "undefined"); }, geticonclass: function(index) { return this.actions[index].icon; } } };