UNPKG

captain-ui

Version:

有赞vue wap业务组件库

35 lines (32 loc) 697 B
import LinkItem from './LinkItem'; export default { render: function render() { var _vm = this; var _h = _vm.$createElement; var _c = _vm._self._c || _h; return _c('ul', { staticClass: "cap-related-link" }, _vm._l(_vm.links, function (link) { return _c('li', { staticClass: "cap-related-link__item" }, [_c('link-item', { attrs: { "link-title": link.linkTitle, "link-url": link.linkUrl } })], 1); }), 0); }, name: 'cap-related-link', components: { LinkItem: LinkItem }, props: { links: { type: Array, default: function _default() { return []; } } } };