mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 07:28:24 +08:00
fix(i18n): 修复用户中心词条不生效的问题 (#634)
This commit is contained in:
parent
1a3984ced0
commit
33b9eaccf2
|
@ -16,7 +16,7 @@
|
||||||
</t-button>
|
</t-button>
|
||||||
</template>
|
</template>
|
||||||
<t-row class="content" justify="space-between">
|
<t-row class="content" justify="space-between">
|
||||||
<t-col v-for="(item, index) in USER_INFO_LIST" :key="index" class="contract" :span="item.span ?? 3">
|
<t-col v-for="(item, index) in userInfoList" :key="index" class="contract" :span="item.span ?? 3">
|
||||||
<div class="contract-title">
|
<div class="contract-title">
|
||||||
{{ item.title }}
|
{{ item.title }}
|
||||||
</div>
|
</div>
|
||||||
|
@ -118,6 +118,7 @@ let lineContainer: HTMLElement;
|
||||||
let lineChart: echarts.ECharts;
|
let lineChart: echarts.ECharts;
|
||||||
const store = useSettingStore();
|
const store = useSettingStore();
|
||||||
const chartColors = computed(() => store.chartColors);
|
const chartColors = computed(() => store.chartColors);
|
||||||
|
const userInfoList = computed(() => USER_INFO_LIST);
|
||||||
|
|
||||||
const onLineChange = (value: DateRangeValue) => {
|
const onLineChange = (value: DateRangeValue) => {
|
||||||
lineChart.setOption(
|
lineChart.setOption(
|
||||||
|
|
Loading…
Reference in New Issue
Block a user