singleActions.js 248 B

123456789101112
  1. export default {
  2. created () {
  3. this.singleActions = [
  4. {
  5. label: this.$t('monitor.monitorresources.management'),
  6. action: (obj) => {
  7. this.handleOpenSidepage(obj, 'CommonalertList')
  8. },
  9. },
  10. ]
  11. },
  12. }