import DiffPage from './DiffPage/index.vue'

// 声明
import type { App } from 'vue';

// import './style.scss';

export default {
  install: (app: App, options = {}) => {
    app.component('DiffPage', DiffPage);
  }
};

export { DiffPage }
