bmui
Version:
Bluemoon Moon Components
48 lines (44 loc) • 1.1 kB
JavaScript
var __render = function __render() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c('div', {
staticClass: "bmui-cell_arrow1"
}, [_c('p', {
staticClass: "bmui-cell_arrow1-title"
}, [_vm._v(_vm._s(_vm.title || 'TITLE')), _c('span', {
directives: [{
name: "show",
rawName: "v-show",
value: _vm.isNeed,
expression: "isNeed"
}],
staticClass: "bmui-cell_arrow1-isNeed"
}, [_vm._v("*")])]), _vm._v(" "), _vm.$slots["default"] ? _c('div', {
staticClass: "bmui-cell_arrow1-content"
}, [_vm._t("default")], 2) : _c('p', {
staticClass: "bmui-cell_arrow1-content"
}, [_vm._v(_vm._s(_vm.content))]), _vm._v(" "), _c('i', {
staticClass: "bmui-cell_arrow1-icon"
})]);
};
var __staticRender = [];
export default {
render: __render,
staticRenderFns: __staticRender,
name: 'BmuiCellArrow1',
props: {
title: {
type: String,
"default": ''
},
content: {
type: String,
"default": ''
},
isNeed: {
type: Boolean,
"default": false
}
}
};