fix(badge): fix dot-badge color (#2943)

Fix dot-badge color. It was interrupted by primary color
This commit is contained in:
Victor Vedenin 2021-08-16 04:55:26 +03:00 committed by GitHub
parent f03b12bdf9
commit 2067e6587c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,10 +6,9 @@
v-show="!hidden && (content || content === 0 || isDot)"
class="el-badge__content"
:class="[
'el-badge__content--' + type,
isDot ? 'is-dot' : 'el-badge__content--' + type,
{
'is-fixed': $slots.default,
'is-dot': isDot
}
]"
v-text="content"