There was an error while loading. Please reload this page.
The EVE Companion App is designed with modularity in mind, allowing for future expansion and third-party extensions.
<template>
export default { name: 'MyPlugin', version: '1.0.0', onLoad({ dispatch, bus, api }) { dispatch('window:open', { id: 'CustomTool' }); bus.listen('fit:parsed', (data) => console.log(data)); } };
Plugins would be sandboxed via iframe or dynamic import.