17 lines
356 B
Vue
17 lines
356 B
Vue
<script setup lang="ts">
|
|
import { onMounted } from 'vue';
|
|
import { PageContainer } from 'antdv-pro-layout';
|
|
|
|
onMounted(() => {});
|
|
</script>
|
|
|
|
<template>
|
|
<PageContainer>
|
|
<a-card :bordered="false" :body-style="{ padding: '0px' }">
|
|
<h1>Overview 核心网 概览</h1>
|
|
</a-card>
|
|
</PageContainer>
|
|
</template>
|
|
|
|
<style lang="less" scoped></style>
|