
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
fastcomments-vue
Advanced tools
A Vue library for FastComments, a fast and developer friendly comment system.
For Vue 3.0, see fastcomments-vue-next.
npm install --save fastcomments-vue
yarn add fastcomments-vue
The FastCommentsVue component contains the live FastComments comment widget.
Replace "demo" below with your "tenantId" - available here in the FastComments admin area.
The widget supports a lot of options - see FastCommentsConfig here.
<script lang="ts">
import Vue from 'vue';
import FastCommentsVue from 'fastcomments-vue';
export default Vue.extend({
name: 'ServeDev',
components: {
FastCommentsVue
}
});
</script>
<template>
<div id="app">
<fast-comments-vue v-bind:config="{tenantId: 'demo'}" />
</div>
</template>
In FastComments we call the article id, or page the comments get tied to, the URL ID as it can be a url or an ID. Define the URL ID in the following manner. The component watches for changes in config object, and will reload, so you can just update the "url" and "urlId" settings.
See a full working example here.
Run the pagination example via:
npm run serve-pagination
<fast-comments-vue v-bind:config="{tenantId: 'demo', url: 'https://example.com', urlId: 'some-page-id'}" />
If your account is located in the EU, set region = 'eu' in the widget configuration, for example:
<fast-comments-vue v-bind:config="{tenantId: 'demo', url: 'https://example.com', urlId: 'some-page-id', region: 'eu'}" />
Otherwise, you do not have to define region.
You probably don't want to define the config inline if you're passing callbacks etc. Instead, you'll want to define
the config in a computed block, otherwise each time your callback etc is invoked the entire widget will re-render.
See the spinner example for how to do this.
Please check out our contribution guidelines before starting on a change. Remember to communicate first!
MIT © winrid
FAQs
A Vue library for FastComments
The npm package fastcomments-vue receives a total of 2 weekly downloads. As such, fastcomments-vue popularity was classified as not popular.
We found that fastcomments-vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.