@vuesax-alpha/nightly
Version:
A Component Library for Vue 3
23 lines (18 loc) • 603 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
require('../../../hooks/index.js');
require('../../../utils/index.js');
var runtime = require('../../../utils/vue/props/runtime.js');
var index = require('../../../hooks/use-common-props/index.js');
const cardType = [1, "1", 2, "2", 3, "3", 4, "4", 5, "5"];
const cardProps = runtime.buildProps({
color: index.useColorProp,
type: {
type: [String, Number],
values: cardType,
validator: (val) => cardType.includes(val),
default: 1
}
});
exports.cardProps = cardProps;
//# sourceMappingURL=card2.js.map