Blame view

node_modules/bootstrap-vue/src/components/carousel/index.js 304 Bytes
4cd4fd28   郭伟龙   feat: 初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
import { BCarousel } from './carousel'
import { BCarouselSlide } from './carousel-slide'
import { pluginFactory } from '../../utils/plugins'

const CarouselPlugin = /*#__PURE*/ pluginFactory({
  components: {
    BCarousel,
    BCarouselSlide
  }
})

export { CarouselPlugin, BCarousel, BCarouselSlide }