mirror of
https://gitee.com/mirrors/AllinSSL.git
synced 2026-03-17 11:42:01 +08:00
【新增】私有证书
This commit is contained in:
20
frontend/apps/domain-management-backend/src/App.tsx
Normal file
20
frontend/apps/domain-management-backend/src/App.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import { Transition, type Component as ComponentType, h } from "vue";
|
||||
import { RouterView } from "vue-router";
|
||||
import CustomProvider from "@baota/naive-ui/components/customProvider";
|
||||
|
||||
export default defineComponent({
|
||||
name: "App",
|
||||
setup() {
|
||||
return () => (
|
||||
<CustomProvider>
|
||||
<RouterView>
|
||||
{({ Component }: { Component: ComponentType }) => (
|
||||
<Transition name="route-slide" mode="out-in">
|
||||
{Component && h(Component)}
|
||||
</Transition>
|
||||
)}
|
||||
</RouterView>
|
||||
</CustomProvider>
|
||||
);
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user