mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
15 lines
231 B
JavaScript
Vendored
15 lines
231 B
JavaScript
Vendored
const { defineStore } = window.pinia
|
|
|
|
export const useCustomerStore = defineStore({
|
|
id: 'customers',
|
|
state: () => ({
|
|
customers: 'okay',
|
|
}),
|
|
|
|
actions: {
|
|
resetCustomers() {
|
|
this.customers = 'okay'
|
|
},
|
|
}
|
|
})
|