2022-08-19 14:40:37 +08:00

85 lines
2.1 KiB
Vue

<template>
<header class="header">
<img src="https://www.sunniejs.cn/static/weapp/logo.png" /><span> {{ $t('title') }}</span>
</header>
<div class="intro-header">
<div>{{ $t('introduction') }}</div>
<a href="https://github.com/sunniejs/vue-h5-template.git">
<nut-icon name="github" />
</a>
</div>
<nut-cell-group :title="$t('home.support')" class="supportList">
<nut-cell v-for="(item, index) in cellList" :key="index" :title="item" icon="Check" />
</nut-cell-group>
<nut-cell-group :title="$t('home.cssMultiLanguage')" class="supportList">
<nut-cell>
<div :class="['btn-add', i18n.global.locale]"></div>
</nut-cell>
</nut-cell-group>
<div class="btn-wrap">
<nut-button shape="square" size="small" type="default" @click="changeLang('zh-cn')">
{{ $t('language.zh') }}
</nut-button>
<nut-button shape="square" size="small" type="default" @click="changeLang('en-us')">
{{ $t('language.en') }}
</nut-button>
</div>
{{ getUserInfo }}
</template>
<script lang="ts" setup name="HomePage">
import { computed } from 'vue';
import { useUserStore } from '/@/store/modules/user';
import { setLang, i18n } from '/@/i18n';
let cellList = ['vue3', 'vite', 'vue-router', 'axios', 'Pinia', 'vue-i18n', 'vue-jsx', 'vatlet/vant/nutUI'];
const userStore = useUserStore();
const getUserInfo = computed(() => {
const { name = '' } = userStore.getUserInfo || {};
return name;
});
const changeLang = (type) => {
setLang(type);
};
</script>
<style lang="scss">
@import '../../styles/mixin.scss';
.header {
display: flex;
justify-content: center;
align-items: center;
padding: 0 20px;
font-size: 40px;
img {
width: 90px;
height: 90px;
}
}
.intro-header {
margin-top: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
}
.supportList {
margin: 0 16px;
.nut-cell-group__title {
margin-top: 30px;
}
.nut-icon {
color: green;
}
}
.btn-wrap {
margin: 20px;
}
.btn-add {
@include main-lang-bg(302px, 82px, '/@/assets/button', 'add.png');
}
</style>