import { getCart } from '../service/scrap/cart' export default { async updateCart(ctx) { const { data } = await getCart() ctx.commit('addCart', { count: data.length || 0 }) } }