iep-ui
Version:
An enterprise-class UI design language and Vue-based implementation
22 lines (20 loc) • 478 B
JavaScript
import _extends from 'babel-runtime/helpers/extends';
import Base, { baseProps } from './Base';
export default {
name: 'ATypographyParagraph',
functional: true,
inheritAttrs: false,
props: baseProps,
render: function render(h, context) {
var paragraphProps = {
props: _extends({}, context.props, context.data.$attrs, {
component: 'div'
})
};
return h(
Base,
paragraphProps,
[context.slots()['default']]
);
}
};