mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 20:18:22 +08:00
20 lines
516 B
Vue
20 lines
516 B
Vue
import PropTypes from '../_util/vue-types';
|
|
|
|
const skeletonTitleProps = {
|
|
prefixCls: PropTypes.string,
|
|
width: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
};
|
|
|
|
export const SkeletonTitleProps = PropTypes.shape(skeletonTitleProps);
|
|
|
|
const Title = {
|
|
props: skeletonTitleProps,
|
|
render() {
|
|
const { prefixCls, width } = this.$props;
|
|
const zWidth = typeof width === 'number' ? `${width}px` : width;
|
|
return <h3 class={prefixCls} style={{ width: zWidth }} />;
|
|
},
|
|
};
|
|
|
|
export default Title;
|