@jx3box/jx3box-ui 2.0.7 → 2.0.8
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
CHANGED
package/src/header/client.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="
|
|
2
|
+
<div class="relative h-full group c-header-client">
|
|
3
3
|
<!-- 当前选择展示 (触发器) -->
|
|
4
4
|
<button type="button" class="u-trigger h-full px-4 flex items-center gap-2 transition-colors duration-200">
|
|
5
5
|
<div class="u-client--current">
|
|
@@ -12,12 +12,14 @@
|
|
|
12
12
|
<span v-if="versions && !versions.length">💧 暂无数据</span>
|
|
13
13
|
</div>
|
|
14
14
|
<table v-if="versions && versions.length" class="m-histories">
|
|
15
|
-
<
|
|
16
|
-
<
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
15
|
+
<thead>
|
|
16
|
+
<tr>
|
|
17
|
+
<th>版本</th>
|
|
18
|
+
<th>更新时间</th>
|
|
19
|
+
<th>贡献者</th>
|
|
20
|
+
<th>修订说明</th>
|
|
21
|
+
</tr>
|
|
22
|
+
</thead>
|
|
21
23
|
<tr class="history" v-for="(ver, key) in versions" :key="key">
|
|
22
24
|
<td>
|
|
23
25
|
<a
|