芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/invoicer.pulsehost.co.uk/resources/scripts/customer/stores/customer.js
const { defineStore } = window.pinia export const useCustomerStore = defineStore({ id: 'customers', state: () => ({ customers: 'okay', }), actions: { resetCustomers() { this.customers = 'okay' }, } })