tachybase_todo/packages/plugins/@tachybase/plugin-blockchain/src/client/index.tsx

22 lines
474 B
TypeScript
Raw Normal View History

import { Plugin } from '@tachybase/client';
export class PluginBlockchainClient extends Plugin {
async afterAdd() {
// await this.app.pm.add()
}
async beforeLoad() {}
// You can get and modify the app instance here
async load() {
console.log(this.app);
// this.app.addComponents({})
// this.app.addScopes({})
// this.app.addProvider()
// this.app.addProviders()
// this.app.router.add()
}
}
export default PluginBlockchainClient;