123456789101112131415161718 |
- const state = () => ({
- supplierInfo: {},
- })
- const mutations = {
- SET_SUPPLIER_INFO(state, supplierInfo) {
- state.supplierInfo = supplierInfo
- },
- }
- const actions = {}
- export default {
- namespaced: true,
- state,
- mutations,
- actions,
- }
|