test #75

Merged
klaus merged 2 commits from test into main 2025-09-14 09:04:58 +00:00
1 changed files with 23 additions and 3 deletions
Showing only changes of commit cd86973b60 - Show all commits

View File

@ -10,9 +10,29 @@
<v-spacer />
<v-toolbar-title>{{ isEdit ? '캐릭터 수정' : '캐릭터 등록' }}</v-toolbar-title>
<v-spacer />
<v-btn small outlined color="primary" @click="exportToJson">JSON 다운로드</v-btn>
<input ref="importInput" type="file" accept="application/json,.json" style="display:none" @change="onImportFileChange" />
<v-btn small color="primary" class="ml-2" @click="$refs.importInput.click()">JSON 업로드</v-btn>
<v-btn
small
outlined
color="primary"
@click="exportToJson"
>
JSON 다운로드
</v-btn>
<input
ref="importInput"
type="file"
accept="application/json,.json"
style="display:none"
@change="onImportFileChange"
>
<v-btn
small
color="primary"
class="ml-2"
@click="$refs.importInput.click()"
>
JSON 업로드
</v-btn>
</v-toolbar>
<v-container>