index.ts 326 B

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