26 lines
483 B
Vue
26 lines
483 B
Vue
<template>
|
|
<view class="mine-help">
|
|
<ArticleList :articleList="helpList" :type="type"></ArticleList>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import ArticleList from '@/components/mine/article-list/index'
|
|
export default {
|
|
data() {
|
|
return {
|
|
type: '使用帮助',
|
|
helpList: [1,1,1,1, 1, 1, 1]
|
|
}
|
|
},
|
|
components: {
|
|
ArticleList
|
|
},
|
|
methods: {},
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.mine-help {
|
|
min-height: calc(100vh - var(--window-top));
|
|
background-color: #ECECEC;
|
|
}
|
|
</style> |