This commit is contained in:
jxxghp
2024-04-07 11:53:47 +08:00
parent a004f1c758
commit a81becd77b
2 changed files with 24 additions and 28 deletions
+2 -1
View File
@@ -24,5 +24,6 @@
"liberty/use-logical-spec": true, "liberty/use-logical-spec": true,
"selector-class-pattern": null, "selector-class-pattern": null,
"color-function-notation": null "color-function-notation": null
} },
"fix": true
} }
+22 -27
View File
@@ -243,7 +243,17 @@ onBeforeMount(() => {
error-description="点击右下角按钮前往插件市场安装插件" error-description="点击右下角按钮前往插件市场安装插件"
/> />
<!-- App市场 --> <!-- App市场 -->
<VFab
icon="mdi-store-plus"
location="bottom end"
size="x-large"
fixed
app
appear
@click="PluginAppDialog = true"
/>
<VDialog <VDialog
v-if="PluginAppDialog"
v-model="PluginAppDialog" v-model="PluginAppDialog"
fullscreen fullscreen
scrollable scrollable
@@ -251,19 +261,6 @@ onBeforeMount(() => {
:z-index="1010" :z-index="1010"
transition="dialog-bottom-transition" transition="dialog-bottom-transition"
> >
<!-- Dialog Activator -->
<template #activator="{ props }">
<VFab
v-bind="props"
icon="mdi-store-plus"
location="bottom end"
size="x-large"
fixed
app
appear
/>
</template>
<!-- Dialog Content --> <!-- Dialog Content -->
<VCard> <VCard>
<!-- Toolbar --> <!-- Toolbar -->
@@ -318,27 +315,25 @@ onBeforeMount(() => {
</VDialog> </VDialog>
<!-- 插件搜索 --> <!-- 插件搜索 -->
<VFab
icon="mdi-magnify"
color="info"
location="bottom end"
class="mb-2"
size="x-large"
fixed
app
appear
@click="SearchDialog = true"
/>
<VDialog <VDialog
v-if="SearchDialog"
v-model="SearchDialog" v-model="SearchDialog"
scrollable scrollable
:z-index="1010" :z-index="1010"
max-width="40rem" max-width="40rem"
max-height="85vh" max-height="85vh"
> >
<!-- Dialog Activator -->
<template #activator="{ props }">
<VFab
v-bind="props"
icon="mdi-magnify"
color="info"
location="bottom end"
class="mb-2"
size="x-large"
fixed
app
appear
/>
</template>
<VCard <VCard
class="mx-auto" class="mx-auto"
width="100%" width="100%"