mirror of
https://github.com/unraid/api.git
synced 2026-01-04 07:29:48 -06:00
refactor: remove Launchpad web component
This commit is contained in:
20
app.vue
20
app.vue
@@ -14,18 +14,22 @@ onBeforeMount(() => {
|
||||
<h2>Vue Components</h2>
|
||||
<h3>UserProfileCe</h3>
|
||||
<UserProfileCe :server="serverState" />
|
||||
<hr />
|
||||
<h3>DownloadApiLogsCe</h3>
|
||||
<DownloadApiLogsCe />
|
||||
<hr />
|
||||
<h3>AuthCe</h3>
|
||||
<AuthCe />
|
||||
<hr />
|
||||
<h3>KeyActionsCe</h3>
|
||||
<KeyActionsCe />
|
||||
<h3>LaunchpadCe</h3>
|
||||
<LaunchpadCe />
|
||||
<hr />
|
||||
<h3>PluginPromoCe</h3>
|
||||
<PluginPromoCe />
|
||||
<hr />
|
||||
<h3>WanIpCheckCe</h3>
|
||||
<WanIpCheckCe />
|
||||
<hr />
|
||||
<h3>CallbackHandlerCe</h3>
|
||||
<CallbackHandlerCe />
|
||||
</div>
|
||||
@@ -33,18 +37,22 @@ onBeforeMount(() => {
|
||||
<h2>Web Components</h2>
|
||||
<h3>UserProfileCe</h3>
|
||||
<connect-user-profile :server="JSON.stringify(serverState)"></connect-user-profile>
|
||||
<hr />
|
||||
<h3>DownloadApiLogsCe</h3>
|
||||
<connect-download-api-logs></connect-download-api-logs>
|
||||
<hr />
|
||||
<h3>AuthCe</h3>
|
||||
<connect-auth></connect-auth>
|
||||
<hr />
|
||||
<h3>KeyActionsCe</h3>
|
||||
<connect-key-actions></connect-key-actions>
|
||||
<h3>LaunchpadCe</h3>
|
||||
<connect-launchpad></connect-launchpad>
|
||||
<hr />
|
||||
<h3>PluginPromoCe</h3>
|
||||
<connect-plugin-promo></connect-plugin-promo>
|
||||
<hr />
|
||||
<h3>WanIpCheckCe</h3>
|
||||
<connect-wan-ip-check></connect-wan-ip-check>
|
||||
<hr />
|
||||
<h3>CallbackHandlerCe</h3>
|
||||
<connect-callback-handler></connect-callback-handler>
|
||||
</div>
|
||||
@@ -60,4 +68,8 @@ h2 {
|
||||
h3 {
|
||||
@apply text-lg font-semibold font-mono;
|
||||
}
|
||||
|
||||
hr {
|
||||
@apply border-black;
|
||||
}
|
||||
</style>
|
||||
@@ -1,16 +0,0 @@
|
||||
<script lang="ts" setup>
|
||||
import 'tailwindcss/tailwind.css';
|
||||
import '~/assets/main.css';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="text-white font-semibold p-4 bg-orange-400 rounded-lg">
|
||||
Launchpad.ce
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="postcss">
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
</style>
|
||||
@@ -41,10 +41,6 @@ export default defineNuxtConfig({
|
||||
name: 'ConnectKeyActions',
|
||||
path: '@/components/KeyActions.ce',
|
||||
},
|
||||
{
|
||||
name: 'ConnectLaunchpad',
|
||||
path: '@/components/Launchpad.ce',
|
||||
},
|
||||
{
|
||||
name: 'ConnectPluginPromo',
|
||||
path: '@/components/PluginPromo.ce',
|
||||
|
||||
Reference in New Issue
Block a user