Files
uniapp-im-shop/pages/news-list/news-list.vue

13 lines
267 B
Vue

<script setup>
import { useUserStore } from '@/stores/user'
const { userInfo } = useUserStore()
console.log(userInfo.userId, '====userInfo===')
</script>
<template>
<view class="news-list">消息列表</view>
</template>
<style lang="scss" scoped></style>