|
@@ -1,5 +1,5 @@
|
|
|
<script setup>
|
|
|
-import { reactive,ref } from 'vue'
|
|
|
+import { onActivated, reactive,ref } from 'vue'
|
|
|
import Search from '@/components/Search.vue'
|
|
|
import SelfList from '@/components/SelfList.vue'
|
|
|
import SortClassify from './components/SortClassify.vue'
|
|
@@ -69,6 +69,10 @@ function goDetail(item){
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+onActivated(()=>{
|
|
|
+ getMyClassifyOpt()
|
|
|
+})
|
|
|
+
|
|
|
|
|
|
</script>
|
|
|
|