feat:关于页面&对接websocket

This commit is contained in:
zy7y
2022-09-17 17:57:09 +08:00
parent 8da0127729
commit 8e37bba724
21 changed files with 5639 additions and 118 deletions

View File

@@ -0,0 +1,25 @@
<script setup>
defineProps({
title: { type: String },
style: {
default: () => ({
padding: '0'
})
}
})
</script>
<template>
<div class="card">
<a-card :bodyStyle="style" :title="title">
<slot></slot>
</a-card>
</div>
</template>
<style scoped>
.card {
width: 100%;
margin: 10px;
}
</style>