mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-19 05:05:44 +08:00
22 lines
482 B
Vue
22 lines
482 B
Vue
<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> |