vuetify
Version:
Vue.js 2 Semantic Component Framework
78 lines (62 loc) • 1.8 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
require('../../../src/stylus/components/_badges.styl');
var _colorable = require('../../mixins/colorable');
var _colorable2 = _interopRequireDefault(_colorable);
var _toggleable = require('../../mixins/toggleable');
var _toggleable2 = _interopRequireDefault(_toggleable);
var _positionable = require('../../mixins/positionable');
var _transitionable = require('../../mixins/transitionable');
var _transitionable2 = _interopRequireDefault(_transitionable);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
// Mixins
exports.default = {
name: 'v-badge',
mixins: [_colorable2.default, _toggleable2.default, (0, _positionable.factory)(['left', 'bottom']), _transitionable2.default],
props: {
color: {
type: String,
default: 'primary'
},
overlap: Boolean,
transition: {
type: String,
default: 'fab-transition'
},
value: {
default: true
}
},
computed: {
classes: function classes() {
return {
'badge--bottom': this.bottom,
'badge--left': this.left,
'badge--overlap': this.overlap
};
}
},
render: function render(h) {
var badge = this.$slots.badge ? [h('span', {
staticClass: 'badge__badge',
'class': this.addBackgroundColorClassChecks(),
attrs: this.attrs,
directives: [{
name: 'show',
value: this.isActive
}]
}, this.$slots.badge)] : null;
return h('span', {
staticClass: 'badge',
'class': this.classes
}, [this.$slots.default, h('transition', {
props: {
name: this.transition,
origin: this.origin,
mode: this.mode
}
}, badge)]);
}
};