Socket
Socket
Sign inDemoInstall

@authvia/pinia-stores-merchant

Package Overview
Dependencies
Maintainers
16
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@authvia/pinia-stores-merchant

Encapsulates the V3 API calls that merchants will need to use and integrates them with Pinia for easier Vue 3 development.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
16
Weekly downloads
 
Created
Source

Pinia Stores for Merchant

Pinia stores to manage merchant experience

import { createApp } from 'vue';
import { v3VueStatePlugin } from '@authvia/v3VueStatePlugin';
import paymentMethodPlugin from '@authvia/payment-method-customer-vue';

import App from './App.vue';
import router from './router';

import './assets/main.css'
import '@authvia/payment-method-customer-vue/dist/style.css';

const app = createApp(App);
app.use(v3VueStatePlugin, {api: 'api.authvia.com', cdn: 'cdn.authvia.com'});

app.use(paymentMethodPlugin)
app.use(router);
app.mount('#app');

FAQs

Package last updated on 11 Jun 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc