| 12345678910111213141516171819202122232425262728 |
- <template>
- <view class="homeWrapper">
- 首页
- <text>{{ shopInfo.name }}</text>
- </view>
- </template>
- <script setup>
- import { onLoad, onShow, onLaunch, onShareAppMessage } from "@dcloudio/uni-app";
- import { ref, computed, watch, Text } from "vue";
- import { useAppStore } from "@/stores/app";
- import { useStoreRights } from "@/stores/rights";
- import useRealGoldPrice from "@/hooks/useRealGoldPrice";
- // 获取实时金价
- // const { realGoldprice } = useRealGoldPrice("RTJ_Au");
- const appStore = useAppStore()
- const shopInfo = appStore.shopInfoGetter;
- console.log("shopInfo=",appStore.shopInfoGetter)
- </script>
- <style lang="scss" setup>
- .homeWrapper{
- background-color: #f5f5f5;
- text{
- color:#ff0000;
- }
- }
- </style>
|