15 lines
276 B
JavaScript
15 lines
276 B
JavaScript
export default {
|
|
emits: ['actionExecuted'],
|
|
|
|
props: ['resourceName', 'resourceId', 'resource', 'panel'],
|
|
|
|
methods: {
|
|
/**
|
|
* Handle the actionExecuted event and pass it up the chain.
|
|
*/
|
|
actionExecuted() {
|
|
this.$emit('actionExecuted')
|
|
},
|
|
},
|
|
}
|