meixioacomponent 2.0.42 → 2.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/meixioacomponent.common.js +43861 -43861
- package/lib/meixioacomponent.umd.js +43872 -43872
- package/lib/meixioacomponent.umd.min.js +12 -12
- package/package.json +1 -1
- package/packages/components/base/baseText/index.vue +3 -3
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div :class="[ 'base-text-wrap',type ]" v-if="content" :title="content"
|
|
2
|
+
<div :class="[ 'base-text-wrap',type ]" v-if="(content===0||content==='0')||content" :title="content"
|
|
3
|
+
@click="onClick">
|
|
3
4
|
<div v-if="type==='phone'" :class="['content-wrap',type]">
|
|
4
5
|
<MobileIcon style="margin-right: var(--margin-2)"></MobileIcon>
|
|
5
6
|
{{ content }}
|
|
@@ -136,7 +137,7 @@ export default {
|
|
|
136
137
|
width: fit-content;
|
|
137
138
|
font-size: var(--font-size-base);
|
|
138
139
|
|
|
139
|
-
.default{
|
|
140
|
+
.default {
|
|
140
141
|
overflow: hidden;
|
|
141
142
|
white-space: nowrap;
|
|
142
143
|
text-overflow: ellipsis;
|
|
@@ -180,7 +181,6 @@ export default {
|
|
|
180
181
|
}
|
|
181
182
|
|
|
182
183
|
|
|
183
|
-
|
|
184
184
|
.empty {
|
|
185
185
|
color: var(--font-color-ds);
|
|
186
186
|
font-size: var(--font-size-s);
|