Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@readapt/shared-components

Package Overview
Dependencies
Maintainers
5
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@readapt/shared-components

This package contains Vue.js components shared between readapt apps.

  • 1.8.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
5
Weekly downloads
 
Created
Source

@readapt/shared-components

This package contains Vue.js components shared between readapt apps.

Installation

Prerequisites

Install peer-dependencies

  1. vue
  2. bootstrap
  3. bootstrap-vue
  4. @readapt/settings
  5. core-js

npm

  1. Install @readapt/shared-component
  npm install @readapt/shared-components

Usage

Register shared components in your Vue.js app typically your main.ts

import ReadaptComponents from '@readapt/shared-components'

Vue.use(ReadaptComponents)

Add the ReadaptComponent in your template for example:

<template>
  <readapt-color-picker :value="bar" @selectColor="fooFn" />
</template>

Or add it individually in your components (for smaller bundles)

import { defineComponent } from 'vue'
import { ColorPicker } from '@readapt/shared-components'

const MyComponent = defineComponent({
  components: { ColorPicker },
  setup() {
    // ...
  }
})

FAQs

Package last updated on 28 Apr 2023

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