27 lines
729 B
JavaScript
27 lines
729 B
JavaScript
import AAutocomplete from './AAutocomplete.vue'
|
|
import AModal from "./AModal.vue"
|
|
import AActionButton from './AActionButton.vue'
|
|
import ADropdown from "./ADropdown.vue"
|
|
import ACarousel from './ACarousel.vue'
|
|
import AEpisode from './AEpisode.vue'
|
|
import AList from './AList.vue'
|
|
import APage from './APage.vue'
|
|
import APlayer from './APlayer.vue'
|
|
import APlaylist from './APlaylist.vue'
|
|
import AProgress from './AProgress.vue'
|
|
import ASoundItem from './ASoundItem.vue'
|
|
import ASwitch from './ASwitch.vue'
|
|
|
|
|
|
/**
|
|
* Core components
|
|
*/
|
|
export const base = {
|
|
AActionButton, AAutocomplete, AModal,
|
|
ACarousel, ADropdown, AEpisode, AList, APage, APlayer, APlaylist,
|
|
AProgress, ASoundItem, ASwitch,
|
|
|
|
}
|
|
|
|
export default base
|