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

@readapt/app-container

Package Overview
Dependencies
Maintainers
3
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@readapt/app-container

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

  • 1.4.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

@readapt/app-container

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

Installation

Prerequisites

Install peer-dependencies

  1. vue

npm

  1. Install @readapt/app-container
  npm install @readapt/app-container

Usage

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

import ReadaptComponents from '@readapt/app-container'

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/app-container'

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

FAQs

Package last updated on 24 Oct 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