Disclaimer: This project is still in beta phase.
This repository is a starting point for creating new integrations for Vue Storefront Next.
- Documentation (WIP)
This repository is a monorepo containing three projects:
- api-client - communicates with a backend;
- composables - exposes composable functions used to retrieve data using
api-clientand to map them to universal data formats usinggetters; - theme -
nuxtproject that glues everything together. It extends our core theme and usescomposablesto retrieve data.
-
Change all
@vue-storefront/boilerplatestrings to your integration name (eg@vue-storefront/super-ecomm) -
Install all required dependencies:
yarn install- (optional) Then you can verify if everything works properly by building all three projects:
yarn build- If everything built properly, you can start creating your new integration with:
yarn dev