- Fix router import path in main.js - Handle Django REST Framework pagination format in API calls - Add getTemplates function to project API - Restart frontend development server
25 lines
646 B
JavaScript
25 lines
646 B
JavaScript
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
//#region ../../packages/components/carousel/src/carousel-item.ts
|
|
/**
|
|
* @deprecated Removed after 3.0.0, Use `CarouselItemProps` instead.
|
|
*/
|
|
const carouselItemProps = require("../../../utils/vue/props/runtime.js").buildProps({
|
|
/**
|
|
* @description name of the item, can be used in `setActiveItem`
|
|
*/
|
|
name: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
/**
|
|
* @description text content for the corresponding indicator
|
|
*/
|
|
label: {
|
|
type: [String, Number],
|
|
default: ""
|
|
}
|
|
});
|
|
//#endregion
|
|
exports.carouselItemProps = carouselItemProps;
|
|
|
|
//# sourceMappingURL=carousel-item.js.map
|