mirror of https://github.com/halo-dev/halo
36 lines
636 B
Vue
36 lines
636 B
Vue
<template>
|
|
<page-view>
|
|
<div class="card-container">
|
|
<a-tabs type="card">
|
|
<a-tab-pane
|
|
key="1"
|
|
tab="文章"
|
|
>
|
|
<comment-tab type="posts"></comment-tab>
|
|
</a-tab-pane>
|
|
<a-tab-pane
|
|
key="2"
|
|
tab="页面"
|
|
>
|
|
<comment-tab type="sheets"></comment-tab>
|
|
</a-tab-pane>
|
|
</a-tabs>
|
|
</div>
|
|
</page-view>
|
|
</template>
|
|
|
|
<script>
|
|
import { PageView } from '@/layouts'
|
|
import CommentTab from './CommentTab'
|
|
export default {
|
|
components: {
|
|
PageView,
|
|
CommentTab
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {}
|
|
}
|
|
</script>
|