feat: 移除无用代码

This commit is contained in:
手瓜一十雪
2024-11-16 12:45:27 +08:00
parent e98bfaac11
commit 83f28795f2
5 changed files with 444 additions and 179 deletions

View File

@@ -0,0 +1,22 @@
<template>
<div class="empty-state">
<p>当前没有网络配置</p>
<t-button @click="showAddTabDialog">添加网络配置</t-button>
</div>
</template>
<script setup lang="ts">
import { defineProps } from 'vue';
defineProps<{ showAddTabDialog: () => void }>();
</script>
<style scoped>
.empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
text-align: center;
}
</style>