#10 fox

Merged
Fox merged 2 commits from fox into master 2 weeks ago
  1. +8
    -1
      otherPages/userManage/pet/components/petHealthInfo.vue

+ 8
- 1
otherPages/userManage/pet/components/petHealthInfo.vue View File

@ -96,9 +96,16 @@
<script setup>
import {
ref,
computed,
onMounted,
watch
} from 'vue';
import { useStore } from 'vuex'
const store = useStore()
const configList = computed(() => {
return store.getters.configList
})
// props
const props = defineProps({


Loading…
Cancel
Save