feat(projects): add websocket demo

This commit is contained in:
Soybean
2023-06-18 22:23:42 +08:00
parent de2829fde7
commit af53ec7625
8 changed files with 140 additions and 4 deletions

View File

@ -0,0 +1,7 @@
<template>
<div></div>
</template>
<script setup lang="ts"></script>
<style scoped></style>

View File

@ -29,6 +29,7 @@ export const views: Record<
'function_tab-detail': () => import('./function/tab-detail/index.vue'),
'function_tab-multi-detail': () => import('./function/tab-multi-detail/index.vue'),
function_tab: () => import('./function/tab/index.vue'),
function_websocket: () => import('./function/websocket/index.vue'),
management_auth: () => import('./management/auth/index.vue'),
management_role: () => import('./management/role/index.vue'),
management_route: () => import('./management/route/index.vue'),