Files
dvcp_v2_wechat_app/src/project/fengdu/AppCircle/Topic.vue

41 lines
566 B
Vue
Raw Normal View History

2023-03-16 17:11:40 +08:00
<template>
<div class="Topic">
<AiLogin ref="login"/>
</div>
</template>
<script>
import { mapActions, mapState } from 'vuex'
export default {
name: 'Topic',
appName: '全部话题',
data () {
return {
}
},
computed: {
...mapState(['user', 'token'])
},
onLoad() {
},
methods: {
...mapActions(['autoLogin', 'authCheck'])
}
}
</script>
<style scoped lang="scss">
.Topic {
padding-top: 120px;
padding-bottom: 40px;
div {
box-sizing: border-box;
}
}
</style>