tdesign-mobile-vue
Version:
tdesign-mobile-vue
47 lines (42 loc) • 768 B
JavaScript
/**
* tdesign v1.7.0
* (c) 2024 TDesign Group
* @license MIT
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
var props = {
container: {
type: Function
},
fixed: {
type: Boolean,
default: true
},
icon: {
type: [Boolean, Function],
default: true
},
target: {
type: Function
},
text: {
type: String,
default: ""
},
theme: {
type: String,
default: "round",
validator: function validator(val) {
if (!val) return true;
return ["round", "half-round", "round-dark", "half-round-dark"].includes(val);
}
},
visibilityHeight: {
type: Number,
default: 200
},
onToTop: Function
};
exports["default"] = props;
//# sourceMappingURL=props.js.map