UNPKG

vuetify

Version:

Vue.js 2 Semantic Component Framework

18 lines (17 loc) 719 B
/* @vue/component */ export default { name: 'v-list-tile-action', functional: true, render: function render(h, _ref) { var data = _ref.data, _ref$children = _ref.children, children = _ref$children === undefined ? [] : _ref$children; data.staticClass = data.staticClass ? 'v-list__tile__action ' + data.staticClass : 'v-list__tile__action'; var filteredChild = children.filter(function (VNode) { return VNode.isComment === false && VNode.text !== ' '; }); if (filteredChild.length > 1) data.staticClass += ' v-list__tile__action--stack'; return h('div', data, children); } }; //# sourceMappingURL=VListTileAction.js.map