mdk-skills 2.2.18 → 2.2.20
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/package.json +1 -1
- package/scripts/web-ui/src/App.vue +13 -3
package/package.json
CHANGED
|
@@ -15,7 +15,11 @@
|
|
|
15
15
|
@update:value="onMenuChange"
|
|
16
16
|
/>
|
|
17
17
|
</div>
|
|
18
|
-
<n-tag
|
|
18
|
+
<n-tag
|
|
19
|
+
v-if="statusData"
|
|
20
|
+
:type="statusData.sourcePath ? 'success' : 'default'"
|
|
21
|
+
size="small"
|
|
22
|
+
>
|
|
19
23
|
{{ statusData.sourcePath ? "本地源" : "npm 源" }}
|
|
20
24
|
</n-tag>
|
|
21
25
|
</div>
|
|
@@ -105,10 +109,16 @@ onMounted(loadStatus);
|
|
|
105
109
|
|
|
106
110
|
.fade-enter-active,
|
|
107
111
|
.fade-leave-active {
|
|
108
|
-
transition:
|
|
112
|
+
transition:
|
|
113
|
+
opacity 0.6s ease,
|
|
114
|
+
transform 0.6s ease;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.fade-enter-from {
|
|
118
|
+
opacity: 0;
|
|
119
|
+
transform: translateY(6px);
|
|
109
120
|
}
|
|
110
121
|
|
|
111
|
-
.fade-enter-from,
|
|
112
122
|
.fade-leave-to {
|
|
113
123
|
opacity: 0;
|
|
114
124
|
}
|