index.ts 321 B

123456789101112
  1. import Title from './src/index.vue';
  2. import Config from './src/Config.vue';
  3. Title.Config = Config;
  4. /* istanbul ignore next */
  5. Title.install = (app: any) => {
  6. app.component('FmDashboardTitle', Title);
  7. return app;
  8. };
  9. export default Title;
  10. export { Config };
  11. export { defaultPropsValue, titleProps } from './src/props';