This commit is contained in:
yanran200730
2023-03-16 17:11:40 +08:00
parent 4a0391157d
commit c7ed3c81ea
6 changed files with 669 additions and 4 deletions

View File

@@ -0,0 +1,40 @@
<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>