wuyouming666
2024-04-23 a6b6a0fe63555a44682f2e1f9bc65a668c84a7e9
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
        }
    }
})