![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
prestashop_accounts_vue_components
Advanced tools
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/prestashop_accounts_vue_components@5" defer></script>
# To load latest version
<script src="https://unpkg.com/prestashop_accounts_vue_components" defer></script>
To use the prestashop_accounts_vue_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>
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/prestashop_accounts_vue_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>
First you need to install the package using your package manager
# chose your favorite package manager
# NPM
$ npm install prestashop_accounts_vue_components --save
# Yarn
$ yarn add prestashop_accounts_vue_components
# pnpm
$ pnpm install prestashop_accounts_vue_components
Then you need to choose a way to integrate your component
<template>
<div>
<prestashop-accounts></prestashop-accounts>
</div>
</template>
<script>
import PsAccounts from "prestashop_accounts_vue_components"
PsAccounts.init();
// OR if you want to use a custom name for the tag
import { PsAccountsWebComponent } from "prestashop_accounts_vue_components"
customElements.define('your-tag-name', PsAccountsWebComponent)
</script>
<template>
<div>
<PsAccounts />
</div>
</template>
<script setup>
import { PsAccounts } from "prestashop_accounts_vue_components";
</script>
Compatible version of prestashop_accounts_vue_components with PsAccounts
Ps Accounts Module | Vue Components minimum version | Vue components maximum version |
---|---|---|
5.0 | 2.0.0 | 2.0.4 |
5.0.2 | 2.0.0 | 2.0.4 |
5.0.3 | 2.0.0 | 2.0.4 |
>=5.1.0 | 3.0.0 | 3.0.4 |
FAQs
## Usage
We found that prestashop_accounts_vue_components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.