@nuxtjs/snipcart dependency to your projectnpx nuxi@latest module add snipcart
@nuxtjs/snipcart to the modules section of nuxt.config.tsexport default defineNuxtConfig({
  modules: [
    '@nuxtjs/snipcart'
  ],
  snipcart: {
    publicApiKey: "youkey"
  }
})
That's it! You can now use Snipcart in your Nuxt app ✨
At any time please have a look at our beautiful playground example.
We tried to not create too much wrapper around the Snipcart api so we don't have to maintain so much if Snipcart change. But you may found some of them useful as:
setLanguage or setCurrencyAs we have a full typescript support play with it and read the description of what is exposed.
We are following Snipcart different loadings. You can control the load of the js using loadStrategy configuration property. You can tell snipcart to not load css using loadCSS config property.
If you load async take in consideration you will not have access to window.Snipcart or snipcart exposed by useSnipcart until its loaded. So adapt your logic. Check on playground we have added few comments
With nuxt it is super easy to customize snipart components. Use your own class css in addition of custom html to override snipcart component.
To do that create for example public/snipcart-custom.html as inside the playground. And make sure you add the path in the nuxt config using templatesUrl property
 snipcart: {
    templatesUrl: '/snipcart-custom.html',
this will after be passed to snipcart to understand what file to retrieve to have access to all templates it will use to build snipcart components
As we told before we expose the snipcart SDK as by default with window.Snipcart or form the composable useSnipcart. So you will have the exact same full access to snipcart SDK
# Install dependencies
pnpm install
# Develop with the playground
pnpm dev
# Build the playground
pnpm dev:build
# Run ESLint
pnpm lint
# Run Vitest
pnpm test
pnpm test:watch
# Release new version
pnpm release