Browse Source

Merge pull request 'fox' (#10) from fox into master

Reviewed-on: http://175.178.51.79:3000/Augcl/pet-front/pulls/10
master
Fox 2 months ago
parent
commit
b962e5676d
1 changed files with 8 additions and 1 deletions
  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> <script setup>
import { import {
ref, ref,
computed,
onMounted, onMounted,
watch
} from 'vue'; } from 'vue';
import { useStore } from 'vuex'
const store = useStore()
const configList = computed(() => {
return store.getters.configList
})
// props // props
const props = defineProps({ const props = defineProps({


Loading…
Cancel
Save