
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
@grapecity/activereports-vue
Advanced tools
This package is a part of the ActiveReportsJS and provides vue wrapper for ARJS Viewer Component
npm install -g @vue/cli
vue create arjs-vue -d
cd arjs-vue
npm install @grapecity/activereports-vue
Or if you are using yarn:
yarn add @grapecity/activereports-vue
Note: If you are using Vue 2.0 then install @vue/composition-api package:
npm install @vue/composition-api
Or if you are using yarn:
yarn add @vue/composition-api
src/App.vue
:<template>
<div id="app" style="height: 100vh">
<GcArViewer :report="{ Uri: reportTemplate }"></GcArViewer>
</div>
</template>
<script>
import { Viewer } from "@grapecity/activereports-vue";
import "@grapecity/activereports/styles/ar-js-ui.css";
import "@grapecity/activereports/styles/ar-js-viewer.css";
export default {
name: "App",
components: {
GcArViewer: Viewer,
},
data: function () {
return {
reportTemplate: {
Type: "report",
Body: {
Name: "Body",
Type: "section",
ReportItems: [
{
Type: "textbox",
Name: "textbox1",
Style: { FontSize: "18pt" },
Value: "Hello, ActiveReportsJS Viewer",
Height: "10in",
},
],
},
Name: "Report",
},
};
},
};
</script>
'npm run serve' or 'yarn serve' command
For more information on how to use ActiveReportsJS and available tools, refer to the Documentation or API reference for guidance.
FAQs
ActiveReportsJS components for Vue
The npm package @grapecity/activereports-vue receives a total of 140 weekly downloads. As such, @grapecity/activereports-vue popularity was classified as not popular.
We found that @grapecity/activereports-vue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.