This commit is contained in:
yanran200730
2023-03-16 17:41:54 +08:00

View File

@@ -0,0 +1,32 @@
<template>
<div class="page">
</div>
</template>
<script>
import {mapState} from "vuex";
export default {
name: "MyPostList",
appName: '我的帖子',
computed: {
...mapState(['user', 'token']),
},
methods: {
},
onShow() {
},
}
</script>
<style scoped lang="scss">
@import "~dvcp-wui/common";
.page {
width: 100%;
min-height: 100%;
background-color: #F3F6F9;
}
</style>