Skip to content

Commit

Permalink
优化菜单
Browse files Browse the repository at this point in the history
  • Loading branch information
jianyun8023 committed Aug 4, 2024
1 parent 16e08f0 commit 2b3b4ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/calibre-pages/src/views/Setting.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

<el-row :gutter="10">
<h2 class="text-xl">设置</h2>
<el-table :data="settings" style="width: 100%">
<el-table :data="settings" style="width: 100%" stripe>
<el-table-column prop="name" label="Setting"></el-table-column>
<el-table-column prop="description" label="Value"></el-table-column>
<el-table-column label="Action">
<el-table-column fixed="right" label="Action">
<template #default="scope">
<el-button v-loading="scope.row.loading"
element-loading-background="rgba(122, 122, 122, 0.8)"
Expand Down Expand Up @@ -40,7 +40,7 @@ export default {
settings: [
{
name: 'Update Index',
description: 'Click to update the search index',
description: '更新MeiliSearch索引',
loading: false,
}
],
Expand Down

0 comments on commit 2b3b4ad

Please sign in to comment.