Socket
Socket
Sign inDemoInstall

@starport/vue

Package Overview
Dependencies
Maintainers
3
Versions
166
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@starport/vue

A library of Vue 3 components for building frontends for cosmos-sdk chains


Version published
Weekly downloads
726
decreased by-17.12%
Maintainers
3
Weekly downloads
 
Created
Source

@starport/vue

A collection of Vue 3 components to help build Starport front-end applications.

Install

Assuming you have a Vue 3 project, just run:

npm install --save @starport/vue

The components also require @starport/vuex to be installed which is set as a peer dependency. More information here

Usage

If you want to import the entire library, in your main.js file:

import { createApp } from 'vue'
import App from './App.vue'
import store from './store' // See @starport/vuex documentation
import vueLib from '@starport/vue'

const app = createApp(App)
app.use(store).use(vueLib).mount('#app')

You can also import only specific components in your main.js file:

import { createApp } from 'vue'
import App from './App.vue'
import store from './store' // See @starport/vuex documentation
import { SpTokenSend } from '@starport/vue'

const app = createApp(App)
app.use(store).use(SpTokenSend).mount('#app')

Components

...

FAQs

Package last updated on 16 Feb 2022

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