zhoushihao
2025-05-12 fbd31387721424c65b173cbb23b03202f3e7dce6
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
        }
    }
})