index.vue
329 Bytes
<template>
<div class="container">
<Breadcrumb :items="['system', 'system-log']" />
<a-card :body-style="{ padding: '20px' }">
<query-table />
</a-card>
</div>
</template>
<script setup lang="ts">
import QueryTable from '@/views/system/logs/components/query-table.vue';
</script>
<style scoped></style>