13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
import { buildProps } from '../../../utils/vue/props/runtime.mjs';
|
|
|
|
const carouselItemProps = buildProps({
|
|
name: { type: String, default: "" },
|
|
label: {
|
|
type: [String, Number],
|
|
default: ""
|
|
}
|
|
});
|
|
|
|
export { carouselItemProps };
|
|
//# sourceMappingURL=carousel-item.mjs.map
|