index.ts 326 B

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