1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view class="my-container">
- <mini-userinfo v-if="parentdetail"></mini-userinfo>
- </view>
- </template>
- <script>
- import {mapState} from 'vuex'
-
- export default {
- computed:{
- ...mapState('m_parent',['token','parentdetail'])
- },
-
- data() {
- return {
-
- };
- },
- methods:{
-
-
- },
- }
- </script>
- <style lang="scss">
- page,
- .my-container{
- height: 100%;
- }
- </style>
|