Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
vue-tribute
Advanced tools
A Vue.js wrapper for Zurb's Tribute library for native @mentions.
$ yarn add vue-tribute
or
$ npm install vue-tribute --save
or include the UMD build, hosted by unpkg in a <script>
tag.
<script src="//unpkg.com/vue-tribute" />
Import and register the component.
import VueTribute from 'vue-tribute'
export default {
...
components: {
VueTribute
}
}
In your template, wrap an input
, textarea
or contenteditable
element in the vue-tribute
component, and pass your Tribute options in.
<div>
<vue-tribute :options="tributeOptions">
<input type="text" placeholder="@..." />
</vue-tribute>
</div>
See the available Tribute options here.
Tribute broadcasts two events — a tribute-replaced
event, and a tribute-no-match
event (see docs here). Listeners for these events can be attached directly to the child element of the <vue-tribute>
component. Eg:
<vue-tribute :options="options">
<input type="text" placeholder="@..." @tribute-no-match="noMatchFound" />
</vue-tribute>
# To run the example
$ npm run example
# To run the tests
$ npm test
# To publish the dist file
$ npm run build
MIT © Collin Henderson
FAQs
A Vue.js wrapper for Zurb's Tribute library for native @mentions
The npm package vue-tribute receives a total of 3,854 weekly downloads. As such, vue-tribute popularity was classified as popular.
We found that vue-tribute 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.