123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <template>
- <text v-if="text" :class="inverted ? 'uni-badge-' + type + ' uni-badge--' + size + ' uni-badge-inverted' : 'uni-badge-' + type + ' uni-badge--' + size"
- class="uni-badge" @click="onClick()">{{ text }}</text>
- </template>
- <script>
- export default {
- name: 'UniBadge',
- props: {
- type: {
- type: String,
- default: 'default'
- },
- inverted: {
- type: Boolean,
- default: false
- },
- text: {
- type: String,
- default: ''
- },
- size: { // small.normal
- type: String,
- default: 'normal'
- }
- },
- methods: {
- onClick() {
- this.$emit('click')
- }
- }
- }
- </script>
- <style lang="scss">
- $bage-size:12px;
- $bage-small:scale(0.8);
- .uni-badge {
- font-family: 'Helvetica Neue', Helvetica, sans-serif;
- box-sizing: border-box;
- font-size: $bage-size;
- line-height: 1;
- display: inline-block;
- padding: 3px 6px;
- color: $uni-text-color;
- border-radius: 100px;
- background-color: $uni-bg-color-hover;
- &.uni-badge-inverted {
- padding: 0 5px 0 0;
- color: $uni-text-color-grey;
- background-color: transparent;
- }
- &-primary {
- color: $uni-text-color-inverse;
- background-color: $uni-color-primary;
- &.uni-badge-inverted {
- color: $uni-color-primary;
- background-color: transparent
- }
- }
- &-success {
- color: $uni-text-color-inverse;
- background-color: $uni-color-success;
- &.uni-badge-inverted {
- color: $uni-color-success;
- background-color: transparent
- }
- }
- &-warning {
- color: $uni-text-color-inverse;
- background-color: $uni-color-warning;
- &.uni-badge-inverted {
- color: $uni-color-warning;
- background-color: transparent
- }
- }
- &-error {
- color: $uni-text-color-inverse;
- background-color: $uni-color-error;
- &.uni-badge-inverted {
- color: $uni-color-error;
- background-color: transparent
- }
- }
- &--small {
- transform: $bage-small;
- transform-origin: center center;
- }
- }
- </style>
|