@@ -6,7 +6,6 @@ definePageMeta({
66})
77
88const installModuleOpen = ref (false )
9- const { showExperimentalFeatures } = useDevToolsOptions ()
109const installedModules = useInstalledModules ()
1110
1211const packageModules = computed (() => installedModules .value .filter (i => i .isPackageModule ))
@@ -28,7 +27,6 @@ const userModules = computed(() => installedModules.value.filter(i => !i.isPacka
2827 :mod =" m"
2928 />
3029 <NCard
31- v-if =" showExperimentalFeatures"
3230 border =" 1.5 dashed"
3331 min-h-30 p4 transition
3432 hover =" border-primary"
@@ -59,31 +57,29 @@ const userModules = computed(() => installedModules.value.filter(i => !i.isPacka
5957 </template >
6058 </NSectionBlock >
6159
62- <template v-if =" showExperimentalFeatures " >
63- <Transition name =" fade-in" >
64- <div
65- v-if =" installModuleOpen"
66- class =" fixed bottom-0 left-0 right-0 top-0 z-100"
67- bg-black:20 backdrop-blur-2 @click =" installModuleOpen = false"
60+ <Transition name =" fade-in" >
61+ <div
62+ v-if =" installModuleOpen"
63+ class =" fixed bottom-0 left-0 right-0 top-0 z-100"
64+ bg-black:20 backdrop-blur-2 @click =" installModuleOpen = false"
65+ />
66+ </Transition >
67+ <Transition name =" slide-in" >
68+ <div
69+ v-if =" installModuleOpen" border =" l base"
70+ pos =" fixed bottom-0 right-0 top-0" z-200 w-150 bg-base
71+ >
72+ <NIconButton
73+ icon =" carbon-close"
74+ pos =" absolute top-3 right-3"
75+ rounded-full text-xl
76+ @click =" installModuleOpen = false"
6877 />
69- </Transition >
70- <Transition name =" slide-in" >
71- <div
72- v-if =" installModuleOpen" border =" l base"
73- pos =" fixed bottom-0 right-0 top-0" z-200 w-150 bg-base
74- >
75- <NIconButton
76- icon =" carbon-close"
77- pos =" absolute top-3 right-3"
78- rounded-full text-xl
79- @click =" installModuleOpen = false"
80- />
8178
82- <ModuleInstallList />
83- </div >
84- </Transition >
85- <ModuleActionDialog />
86- </template >
79+ <ModuleInstallList />
80+ </div >
81+ </Transition >
82+ <ModuleActionDialog />
8783 </div >
8884
8985 <HelpFab >
0 commit comments