wangfei
2024-10-21 07b0cdcb34db682b51ca972f5c23da653aa5d32d
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
        }
    }
})