123456789101112 |
- import Title from './src/index.vue';
- import Config from './src/Config.vue';
- Title.Config = Config;
- /* istanbul ignore next */
- Title.install = (app: any) => {
- app.component('FmDashboardTitle', Title);
- return app;
- };
- export default Title;
- export { Config };
- export { defaultPropsValue, titleProps } from './src/props';
|