Socket
Book a DemoInstallSign in
Socket

@prestashopcorp/accounts-components

Package Overview
Dependencies
Maintainers
6
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@prestashopcorp/accounts-components

## Usage

npmnpm
Version
0.0.2-beta.9
Version published
Maintainers
6
Created
Source

Prestashop Accounts Vue Components

Usage

We recommend using the Web component by loading the library through CDN to receive the latest components updates

To load a hosted library, copy and paste the HTML snippet for that library (shown below) in your web page.

# To load latest minor version 5
<script src="https://unpkg.com/@prestashopcorp/accounts-components@0" defer></script>

# To load latest version
<script src="https://unpkg.com/@prestashopcorp/accounts-components" defer></script>

To use the @prestashopcorp/accounts-components, you need a prestashop-accounts html tag, when it's in the page you can then call the init function of psaccountsVue

<prestashop-accounts></prestashop-accounts>

<script>
  window.psaccountsVue.init();
</script>

Vue component

If you want to use the component in VueJS you will need to load VueJS through cdn too

<div id="app"></div>

<script src="https://unpkg.com/@prestashopcorp/accounts-components@5/psaccountsVue.umd.js" defer></script>

<script type="module">
  import { createApp } from "https://unpkg.com/vue@3.2.26/dist/vue.esm-browser.js";

  const App = {
    data() {
      return {
        name: "John",
      };
    },
    template: `<div>
            <h1>Hello {{ name }}</h1>
            <prestashop-accounts></prestashop-accounts>
        </div>`,
    mounted() {
      window.psaccountsVue.init();
    },
  };

  createApp(App).mount("#app");
</script>

Local install

First you need to install the package using your package manager

# chose your favorite package manager
# NPM
$ npm install @prestashopcorp/accounts-components --save

# Yarn
$ yarn add @prestashopcorp/accounts-components

# pnpm
$ pnpm install @prestashopcorp/accounts-components

Then you need to choose a way to integrate your component

<template>
  <div>
    <prestashop-accounts></prestashop-accounts>
  </div>
</template>
<script>
import PsAccounts from "@prestashopcorp/accounts-components"

PsAccounts.init();
// OR if you want to use a custom name for the tag
import { PsAccountsWebComponent } from "@prestashopcorp/accounts-components"

customElements.define('your-tag-name', PsAccountsWebComponent)
</script>

Vue component

<template>
  <div>
    <PsAccounts />
  </div>
</template>
<script setup>
import { PsAccounts } from "@prestashopcorp/accounts-components";
</script>

Compatibility

Compatible version of @prestashopcorp/accounts-components with PsAccounts

Ps Accounts ModuleVue Components minimum versionVue components maximum version
5.02.0.02.0.4
5.0.22.0.02.0.4
5.0.32.0.02.0.4
>=5.1.03.0.03.0.4

FAQs

Package last updated on 04 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts