
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
@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 137 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
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.