|
|
@ -151,7 +151,8 @@ function handleImportButtonClick(): void {
|
|
|
|
<div class="flex items-center space-x-4">
|
|
|
|
<div class="flex items-center space-x-4">
|
|
|
|
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.chatHistory') }}</span>
|
|
|
|
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.chatHistory') }}</span>
|
|
|
|
|
|
|
|
|
|
|
|
<NButton @click="exportData">
|
|
|
|
<div class="flex flex-wrap items-center gap-4">
|
|
|
|
|
|
|
|
<NButton size="small" @click="exportData">
|
|
|
|
<template #icon>
|
|
|
|
<template #icon>
|
|
|
|
<SvgIcon icon="ri:download-2-fill" />
|
|
|
|
<SvgIcon icon="ri:download-2-fill" />
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
@ -159,7 +160,7 @@ function handleImportButtonClick(): void {
|
|
|
|
</NButton>
|
|
|
|
</NButton>
|
|
|
|
|
|
|
|
|
|
|
|
<input id="fileInput" type="file" style="display:none" @change="importData">
|
|
|
|
<input id="fileInput" type="file" style="display:none" @change="importData">
|
|
|
|
<NButton @click="handleImportButtonClick">
|
|
|
|
<NButton size="small" @click="handleImportButtonClick">
|
|
|
|
<template #icon>
|
|
|
|
<template #icon>
|
|
|
|
<SvgIcon icon="ri:upload-2-fill" />
|
|
|
|
<SvgIcon icon="ri:upload-2-fill" />
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
@ -168,7 +169,7 @@ function handleImportButtonClick(): void {
|
|
|
|
|
|
|
|
|
|
|
|
<NPopconfirm placement="bottom" @positive-click="clearData">
|
|
|
|
<NPopconfirm placement="bottom" @positive-click="clearData">
|
|
|
|
<template #trigger>
|
|
|
|
<template #trigger>
|
|
|
|
<NButton>
|
|
|
|
<NButton size="small">
|
|
|
|
<template #icon>
|
|
|
|
<template #icon>
|
|
|
|
<SvgIcon icon="ri:close-circle-line" />
|
|
|
|
<SvgIcon icon="ri:close-circle-line" />
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
@ -178,11 +179,13 @@ function handleImportButtonClick(): void {
|
|
|
|
{{ $t('chat.clearHistoryConfirm') }}
|
|
|
|
{{ $t('chat.clearHistoryConfirm') }}
|
|
|
|
</NPopconfirm>
|
|
|
|
</NPopconfirm>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="flex items-center space-x-4">
|
|
|
|
<div class="flex items-center space-x-4">
|
|
|
|
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.theme') }}</span>
|
|
|
|
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.theme') }}</span>
|
|
|
|
<div class="flex items-center space-x-4">
|
|
|
|
<div class="flex flex-wrap items-center gap-4">
|
|
|
|
<template v-for="item of themeOptions" :key="item.key">
|
|
|
|
<template v-for="item of themeOptions" :key="item.key">
|
|
|
|
<NButton
|
|
|
|
<NButton
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
:type="item.key === theme ? 'primary' : undefined"
|
|
|
|
:type="item.key === theme ? 'primary' : undefined"
|
|
|
|
@click="appStore.setTheme(item.key)"
|
|
|
|
@click="appStore.setTheme(item.key)"
|
|
|
|
>
|
|
|
|
>
|
|
|
@ -195,9 +198,10 @@ function handleImportButtonClick(): void {
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex items-center space-x-4">
|
|
|
|
<div class="flex items-center space-x-4">
|
|
|
|
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.language') }}</span>
|
|
|
|
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.language') }}</span>
|
|
|
|
<div class="flex items-center space-x-4">
|
|
|
|
<div class="flex flex-wrap items-center gap-4">
|
|
|
|
<template v-for="item of languageOptions" :key="item.key">
|
|
|
|
<template v-for="item of languageOptions" :key="item.key">
|
|
|
|
<NButton
|
|
|
|
<NButton
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
:type="item.key === language ? 'primary' : undefined"
|
|
|
|
:type="item.key === language ? 'primary' : undefined"
|
|
|
|
@click="appStore.setLanguage(item.key)"
|
|
|
|
@click="appStore.setLanguage(item.key)"
|
|
|
|
>
|
|
|
|
>
|
|
|
@ -208,7 +212,7 @@ function handleImportButtonClick(): void {
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex items-center space-x-4">
|
|
|
|
<div class="flex items-center space-x-4">
|
|
|
|
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.resetUserInfo') }}</span>
|
|
|
|
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.resetUserInfo') }}</span>
|
|
|
|
<NButton @click="handleReset">
|
|
|
|
<NButton size="small" @click="handleReset">
|
|
|
|
{{ $t('common.reset') }}
|
|
|
|
{{ $t('common.reset') }}
|
|
|
|
</NButton>
|
|
|
|
</NButton>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|