refactor: remove Launchpad web component

This commit is contained in:
Zack Spear
2023-06-01 20:46:46 -07:00
parent 67ae4dab05
commit 57bd93b3a2
3 changed files with 16 additions and 24 deletions

20
app.vue
View File

@@ -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>

View File

@@ -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>

View File

@@ -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',