123456789 |
- import type { Component } from 'vue';
- import cVideo from './video.vue';
- import cHead from './head.vue';
- import cSearch from './search.vue';
- const components: {
- [propName: string]: Component;
- } = { cHead, cVideo, cSearch };
- export default components;
|