ci: 国际化

This commit is contained in:
就眠儀式 2022-03-09 11:22:25 +08:00
parent 9fc2b3922f
commit 29ddc72e4b
6 changed files with 36 additions and 15 deletions

View File

@ -5,5 +5,11 @@ export default {
components: "Components",
extend: "Extend",
material: "Material"
},
home: {
description: "An enterprise-class UI components based on Layui and Vue.",
version: "version",
changelog: "changelog",
download: "download"
}
}

View File

@ -5,5 +5,11 @@ export default {
components: "组件",
extend: "生态",
material: "物料"
},
home: {
description: "layui - vue谐音类 UI) 是 一 套 Vue 3.0 的 桌 面 端 组 件 库.",
version: "当前版本",
changelog: "更新日志",
download: "下载量"
}
}

View File

@ -12,8 +12,7 @@
<div class="layui-anim site-desc site-desc-anim">
<p class="web-font-desc">layui - vue</p>
<cite
>layui - vue谐音 UI) Vue 3.0
.</cite
>{{ t('home.description') }}</cite
>
</div>
<div class="site-download">
@ -22,15 +21,15 @@
>
</div>
<div class="site-version">
<span>当前版本v<cite class="site-showv">0.3.8</cite></span>
<span>{{ t('home.version') }}v<cite class="site-showv">0.3.8</cite></span>
<span
><router-link
class="layui-inline site-down"
to="/zh-CN/guide/changelog"
>更新日志</router-link
>{{ t('home.changelog') }}</router-link
></span
>
<span>下载量<em class="site-showdowns">4680</em></span>
<span>{{ t('home.download') }}<em class="site-showdowns">4680</em></span>
</div>
</div>
<div class="site-banner-other">
@ -40,7 +39,7 @@
rel="nofollow"
class="site-star"
>
<i class="layui-icon"></i> Star <cite id="getStars">657</cite>
<i class="layui-icon"></i> Star <cite id="getStars">699</cite>
</a>
<a
href="https://gitee.com/layui-vue"
@ -101,13 +100,27 @@
</div>
<div class="footer footer-index">
<p>
Copyright © 2021 <a href="/index.html">layui-vue.pearadmin.com</a> MIT
Licensed
Copyright © 2022 <a href="/index.html">www.layui-vue.com</a> mit
licence
</p>
<p></p>
</div>
</div>
</template>
<script>
import { useI18n } from 'vue-i18n';
export default {
name: "index",
setup() {
const { t } = useI18n();
return {
t
}
}
}
</script>
<style>
.site-container {
margin-top: 60px;

View File

@ -13,5 +13,3 @@ export function throttle(func: Function) {
export function handle_select(e: Event): void {
e.preventDefault();
}

View File

@ -190,7 +190,6 @@ onMounted(() => {
@click.stop="rowClick(data)"
@dblclick.stop="rowDoubleClick(data)"
>
<td v-if="checkbox" class="layui-table-col-special">
<div class="layui-table-cell laytable-cell-checkbox">
<LayCheckbox
@ -223,7 +222,6 @@ onMounted(() => {
</div>
</td>
</template>
</template>
</template>
</tr>
@ -247,4 +245,4 @@ onMounted(() => {
</div>
</div>
</div>
</template>
</template>

View File

@ -13,5 +13,5 @@ export function S4() {
* @param null
* */
export function guid() {
return (S4() + S4() + S4() + S4() + S4() + S4() + S4() + S4());
}
return S4() + S4() + S4() + S4() + S4() + S4() + S4() + S4();
}