UNPKG

@scayle/storefront-nuxt

Version:

Nuxt integration for the SCAYLE Commerce Engine and Storefront API

9 lines (8 loc) 190 B
import { useState, useNuxtApp } from "nuxt/app"; export const useCurrentShop = () => { const nuxt = useNuxtApp(); return useState( "currentShop", () => nuxt.$currentShop ); };