my.vue 406 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view class="my-container">
  3. <mini-userinfo v-if="parentdetail"></mini-userinfo>
  4. </view>
  5. </template>
  6. <script>
  7. import {mapState} from 'vuex'
  8. export default {
  9. computed:{
  10. ...mapState('m_parent',['token','parentdetail'])
  11. },
  12. data() {
  13. return {
  14. };
  15. },
  16. methods:{
  17. },
  18. }
  19. </script>
  20. <style lang="scss">
  21. page,
  22. .my-container{
  23. height: 100%;
  24. }
  25. </style>