mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
15 lines
231 B
JavaScript
15 lines
231 B
JavaScript
const { defineStore } = window.pinia
|
|
|
|
export const useCustomerStore = defineStore({
|
|
id: 'customers',
|
|
state: () => ({
|
|
customers: 'okay',
|
|
}),
|
|
|
|
actions: {
|
|
resetCustomers() {
|
|
this.customers = 'okay'
|
|
},
|
|
}
|
|
})
|