Socket
Book a DemoInstallSign in
Socket

@vue-bridge/runtime

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue-bridge/runtime

A library achieving partial runtime compat between Vue 2 and Vue 3 components

latest
Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
4.1K
-2.83%
Maintainers
1
Weekly downloads
 
Created
Source

@vue-bridge/runtime

current npm version NPM npm bundle size (min+zip) npm downloads per month

Runtime Core library of the VueBridge Project

https://vue-bridge-docs.netlify.app/reference/runtime

What this is

Installation

yarn add @vue-bridge/runtime
# npm
npm install ‘@vue-bridge/runtime'

Basic Usage

<template>
  <input v-model="value">
<template>
<script>
  import { defineComponent } from '@vue-bridge/runtime'
  export defineComponent({
    props: {
      modelValue: String
    },
    emits: ['update:modelValue'],
    computed: {
      value: {
        get() { return this.modelValue }
        set(value) { this.$emit('update:modelValue', value)}
      }
    }
  })
</script>

Please refer to the docs for further guidance and information.

CLI

This package exposes two CLI commands to influence the entry files being exposed by this package - those for Vue 2 or Vue 3.

# Manually switch main entries to Vue 2 compatible versions
npx vue-bridge-switch 2
yarn vue-bridge-switch 2
# Manually switch main entries to Vue 4 compatible versions
npx vue-bridge-switch 3
yarn vue-bridge-switch 3

Development

FAQs

Package last updated on 05 Jul 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