Koha/koha-tmpl/intranet-tmpl/prog/js/vue/stores/vendors.js
Jonathan Druart a95b659e68
Bug 32030: Use Pinia for vendors 🍍
Signed-off-by: Jonathan Field <jonathan.field@ptfs-europe.com>

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-11-08 09:43:46 -03:00

7 lines
No EOL
135 B
JavaScript

import { defineStore } from 'pinia'
export const useVendorStore = defineStore('vendors', {
state: () => ({
vendors: [],
}),
})