ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
53 lines (49 loc) • 1.89 kB
JavaScript
import { isVNode as _isVNode, createVNode as _createVNode } from "vue";
import LeftOutlined from '@ant-design/icons-vue/LeftOutlined';
import RightOutlined from '@ant-design/icons-vue/RightOutlined';
import Button from '../button';
function _isSlot(s) {
return typeof s === 'function' || Object.prototype.toString.call(s) === '[object Object]' && !_isVNode(s);
}
function noop() {}
var Operation = function Operation(props) {
var disabled = props.disabled,
_props$moveToLeft = props.moveToLeft,
moveToLeft = _props$moveToLeft === void 0 ? noop : _props$moveToLeft,
_props$moveToRight = props.moveToRight,
moveToRight = _props$moveToRight === void 0 ? noop : _props$moveToRight,
_props$leftArrowText = props.leftArrowText,
leftArrowText = _props$leftArrowText === void 0 ? '' : _props$leftArrowText,
_props$rightArrowText = props.rightArrowText,
rightArrowText = _props$rightArrowText === void 0 ? '' : _props$rightArrowText,
leftActive = props.leftActive,
rightActive = props.rightActive,
className = props.class,
style = props.style;
return _createVNode("div", {
"class": className,
"style": style
}, [_createVNode(Button, {
"type": "primary",
"size": "small",
"disabled": disabled || !rightActive,
"onClick": moveToRight,
"icon": _createVNode(RightOutlined, null, null)
}, _isSlot(rightArrowText) ? rightArrowText : {
default: function _default() {
return [rightArrowText];
}
}), _createVNode(Button, {
"type": "primary",
"size": "small",
"disabled": disabled || !leftActive,
"onClick": moveToLeft,
"icon": _createVNode(LeftOutlined, null, null)
}, _isSlot(leftArrowText) ? leftArrowText : {
default: function _default() {
return [leftArrowText];
}
})]);
};
Operation.inheritAttrs = false;
export default Operation;