index.ts 312 B

123456789101112
  1. import StackBar from './src/StackBar.vue';
  2. import Config from './src/Config.vue';
  3. StackBar.Config = Config;
  4. StackBar.install = (app: any) => {
  5. app.component(StackBar.name, StackBar);
  6. return app;
  7. };
  8. export default StackBar;
  9. export { Config };
  10. export { defaultPropsValue, componentProps } from './src/props';