Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Vue3 Ui Grid is a light weight Java script framework developed in Vue JS, that allows to display data in a tabular format.

License

Notifications You must be signed in to change notification settings

infusion-js/vue3-ui-grid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

5 Commits

Repository files navigation

vue-ui-grid

Vue Ui Grid is a light weight data management tool that displays data in a tabular format.

It has many immense features like

* Virtual Scrolling, 
* Sorting, 
* Filtering, 
* Grouping, 
* Column Pinning, Resizing and Reorering, 
* Row selection and Edit etc.,

Include Vue Ui Grid Component in your app as showed below:-

```
<link type="text/css" rel="stylesheet" href="vue-ui-grid-v1.0.css">
<script type="text/javascript" src="vue-v3.1.2.js"></script>
<script type="text/javascript" src="vue-data-grid.js"></script>
```

Add grid dimension as CSS style in your app css

```
.vueGrid{ width: 600px; height: 300px}
```

Initialize Grid options as

```
var gridOptions = {
	id: "jsonDataGrid", 
	autoResize: true,
	columnDefs: [
		{ name: 'name', width: "100", cellTooltip: true},
		{ name: 'age'}
	],
	data: [{name: 'Jimme Woods', age: 25}, {name: 'Michael Vinston', age: 18}]
}
```

Include Vue Ui Grid component in your app as showed below:-

```
const app = Vue.createApp({
	data() {
		return { 
			gridOptions: gridOptions
		}
	},
	components: {
		'vue-ui-grid': vueUiGrid
	},
	methods: {
		...
	}
});
const vm = app.mount('#app');
```

Basic UI Grid looks like in below screenshot:

About

Vue3 Ui Grid is a light weight Java script framework developed in Vue JS, that allows to display data in a tabular format.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /