
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@vue-bridge/runtime
Advanced tools
A library achieving partial runtime compat between Vue 2 and Vue 3 components
@vue-bridge/runtime
Runtime Core library of the VueBridge Project
https://vue-bridge-docs.netlify.app/reference/runtime
yarn add @vue-bridge/runtime
# npm
npm install ‘@vue-bridge/runtime'
<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.
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
FAQs
A library achieving partial runtime compat between Vue 2 and Vue 3 components
The npm package @vue-bridge/runtime receives a total of 3,624 weekly downloads. As such, @vue-bridge/runtime popularity was classified as popular.
We found that @vue-bridge/runtime demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.