UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

51 lines (46 loc) 1.01 kB
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); /* unplugin-vue-components disabled */var props = { disabled: { type: [Boolean, Object] }, layout: { type: String, "default": "horizontal", validator: function validator(val) { if (!val) return true; return ["horizontal", "vertical"].includes(val); } }, showCurrent: { type: Boolean, "default": true }, size: { type: String, "default": "medium", validator: function validator(val) { if (!val) return true; return ["small", "medium", "large"].includes(val); } }, tips: { type: Object }, variant: { type: String, "default": "text", validator: function validator(val) { if (!val) return true; return ["text", "outline"].includes(val); } }, onChange: Function }; exports["default"] = props; //# sourceMappingURL=pagination-mini-props.js.map