index.ts 253 B

123456789
  1. import type { Component } from 'vue';
  2. import cVideo from './video.vue';
  3. import cHead from './head.vue';
  4. import cSearch from './search.vue';
  5. const components: {
  6. [propName: string]: Component;
  7. } = { cHead, cVideo, cSearch };
  8. export default components;