fix(config): appStore新增devPath用于dev页面文件写入,调整config页面样式

This commit is contained in:
BTMuli
2023-03-09 12:04:04 +08:00
parent 5bc8a401c1
commit 622caca0b9
2 changed files with 29 additions and 1 deletions

View File

@@ -1,6 +1,8 @@
<template>
<v-card>
<v-card style="margin-bottom: 10px">
<v-card-title>配置</v-card-title>
</v-card>
<v-card style="margin-bottom: 10px">
<v-list>
<v-list-item @click="openMergeData" prepend-icon="mdi-folder">
<v-list-item-title>打开用户数据目录</v-list-item-title>
@@ -13,6 +15,18 @@
</v-list-item>
</v-list>
</v-card>
<v-card style="margin-bottom: 10px">
<v-list>
<v-list-item prepend-icon="mdi-folder">
<v-list-item-title>本地应用数据路径</v-list-item-title>
<v-list-item-subtitle>{{ appStore.devPath.app }}</v-list-item-subtitle>
</v-list-item>
<v-list-item prepend-icon="mdi-folder">
<v-list-item-title>本地用户数据路径</v-list-item-title>
<v-list-item-subtitle>{{ appStore.devPath.merge }}</v-list-item-subtitle>
</v-list-item>
</v-list>
</v-card>
</template>
<script lang="ts">