index.vue 441 Bytes
<script lang="ts" setup>
  import { PageWrapper } from '/@/components/Page';
  import { Button } from 'ant-design-vue';
  const handleBack = () => {};
</script>

<template>
  <PageWrapper title="水电表看板" @back="handleBack" content="已创建组件: 3个">
    <template #extra>
      <Button type="primary">创建组件</Button>
    </template>
    <section class="bg-light-50 h-full w-full"> </section>
  </PageWrapper>
</template>