1.2.5 • Published 4 years ago

@ed3digital/vtex-helpers v1.2.5

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

ED3 VTEX Helpers

Table of Contents

Install

# Yarn
yarn add @ed3digital/vtex-helpers

# NPM
npm install --save @ed3digital/vtex-helpers

Usage

Imports

You can import each method individually

import addToCart from '@ed3digital/vtex-helpers/AddToCart';

or use ES6 named import (tree shaking recommended)

import { addToCart } from '@ed3digital/vtex-helpers';

Example

var items = [
  {
    id: 1,
    quantity: 1,
    seller: '1',
  },
  {
    id: 2,
    quantity: 2,
    seller: '1',
  },
];

addToCart(items);

Funções

NameDescriptionDocs
addToCart()Add Sku(s) to Cart📝
checkLogin()Check if user logged📝