├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── README.md ├── assets └── README.md ├── components ├── Cart.vue ├── LineItems.vue ├── List.vue ├── Product.vue ├── Products.vue ├── README.md └── VariantSelector.vue ├── layouts ├── README.md └── default.vue ├── middleware └── README.md ├── nuxt.config.js ├── package.json ├── pages ├── README.md └── index.vue ├── plugins ├── README.md └── shopify.js ├── static ├── README.md └── favicon.ico ├── store ├── README.md └── index.js ├── test ├── VariantSelector.test.js ├── _setup.js └── snapshots │ ├── VariantSelector.test.js.md │ └── VariantSelector.test.js.snap └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/assets/README.md -------------------------------------------------------------------------------- /components/Cart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/components/Cart.vue -------------------------------------------------------------------------------- /components/LineItems.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/components/LineItems.vue -------------------------------------------------------------------------------- /components/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/components/List.vue -------------------------------------------------------------------------------- /components/Product.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/components/Product.vue -------------------------------------------------------------------------------- /components/Products.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/components/Products.vue -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/components/README.md -------------------------------------------------------------------------------- /components/VariantSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/components/VariantSelector.vue -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/middleware/README.md -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/package.json -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/pages/index.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/shopify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/plugins/shopify.js -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/static/README.md -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/store/README.md -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/store/index.js -------------------------------------------------------------------------------- /test/VariantSelector.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/test/VariantSelector.test.js -------------------------------------------------------------------------------- /test/_setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/test/_setup.js -------------------------------------------------------------------------------- /test/snapshots/VariantSelector.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/test/snapshots/VariantSelector.test.js.md -------------------------------------------------------------------------------- /test/snapshots/VariantSelector.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/test/snapshots/VariantSelector.test.js.snap -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domnantas/nuxt-shopify-example/HEAD/yarn.lock --------------------------------------------------------------------------------