go17/vblog/web/src/views/backend/blog/ListPage.vue

26 lines
428 B
Vue
Raw Normal View History

2025-01-05 18:14:52 +08:00
<template>
<div>
2025-01-12 12:07:48 +08:00
<div class="page-header">
<a-page-header title="ArcoDesign" subtitle="ArcoDesign Vue 2.0">
</a-page-header>
</div>
<div>
搜索框
</div>
<div>
表格数据
</div>
2025-01-05 18:14:52 +08:00
</div>
</template>
<script setup>
2025-01-12 12:07:48 +08:00
import { isLogin } from '@/stores/token';
2025-01-05 18:14:52 +08:00
</script>
2025-01-12 12:07:48 +08:00
<style lang="css" scoped>
:deep(.page-header .arco-page-header-wrapper) {
padding-left: 0px;
}
</style>