22 lines
649 B
Vue
22 lines
649 B
Vue
<template>
|
|
<ArticleListPage :config="pageConfig" />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
useHead({ title: '翰墨文谈 - 决策咨询网' })
|
|
|
|
const pageConfig = {
|
|
title: '翰墨文谈',
|
|
desc: '笔墨流传思想,文章承载智慧,汇聚各界名家随笔,分享从实践中来的感悟',
|
|
bannerGradient: 'linear-gradient(135deg, #92400e 0%, #b45309 100%)',
|
|
baseRoute: 'hanmo',
|
|
categories: [
|
|
{ type: '', label: '全部文章' },
|
|
{ type: 'essay', label: '随笔散文' },
|
|
{ type: 'review', label: '书评影评' },
|
|
{ type: 'poetry', label: '诗词歌赋' },
|
|
{ type: 'other', label: '其他' },
|
|
]
|
|
}
|
|
</script>
|