zhoushihao
2024-07-22 acad4da05b4af1f87df783c4b14fc65a07d11d00
1
2
3
4
5
6
7
8
9
10
11
import {defineStore} from 'pinia'
import {ref} from "vue";
 
export  default defineStore("productGlassType",{
    state: () =>{
        let GlassType=$ref(['',''])
        return {
            GlassType
        }
    }
})