
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
realgrid-vue2
Advanced tools
realgrid-vue
is a Vue component for integrating RealGrid into your Vue applications. It provides a seamless way to add powerful grid functionalities to your project.
RealGrid Vue Wrapper
To install the realgrid-vue
component, use npm or yarn:
npm install realgrid-vue
# or
yarn add realgrid-vue
The License file is required for proper use. More information, visit: http://service.realgrid.com/start
Here's a basic example of how to use realgrid-vue in your project:
<script setup lang="ts">
import { onMounted, ref } from 'vue'
import { RealGridVue, RGDataColumn } from 'realgrid-vue'
import RealGrid, { ValueType, GridBase, GridCell, IndicatorValue, SyncGridHeight } from 'realgrid'
import '../../node_modules/realgrid/dist/realgrid-style.css'
const grid1 = ref<RealGridVue>()
const gridData = ref()
const data = [
{ id: 1, name: 'John Doe', age: 30 },
{ id: 2, name: 'Jane Smith', age: 27 },
{ id: 3, name: 'Alice Johnson', age: 35 },
{ id: 4, name: 'Bob Brown', age: 22 },
{ id: 5, name: 'Charlie Davis', age: 28 },
{ id: 6, name: 'Dana White', age: 33 }
]
RealGrid.setLicenseKey('Your LicenseKey')
</script>
<template>
<div style={{ width: '100%', height: '550px' }}>
<RealGridVue ref={grid} rows={data} autoGenerateField={true}>
<RGDataColumn name='id' fieldName='id' />
<RGDataColumn name='name' fieldName='name' />
<RGDataColumn name='age' fieldName='age' />
</RealGridVue>
</div>
</template>
import 'realgrid/dist/realgrid-style.css'
If you encounter any issues or have questions, please open an issue on GitHub or contact our support team at support@realgrid.com or visit https://docs.realgrid.com/
FAQs
RealGrid2 wrapping Component for Vue2
We found that realgrid-vue2 demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.