store.ts 194 B

12345678910111213
  1. import { reactive } from 'vue'
  2. interface State {
  3. product: string
  4. type: number
  5. couponCode: string
  6. }
  7. export const state = reactive<State>({
  8. product: '',
  9. type: -1,
  10. couponCode: '',
  11. })