GithubHelp home page GithubHelp logo

infusion-js / vue3-ui-grid Goto Github PK

View Code? Open in Web Editor NEW
1.0 0.0 0.0 4.37 MB

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

Home Page: https://infusion-js.github.io/vue3-ui-grid/

License: MIT License

JavaScript 82.64% CSS 17.36%
data-grid data-table ui-grid vue-data-table vue-ui-grid vue3 vue3-data-table vue3-ui-grid vuejs3 html-data-table ui-data-grid vue-data-grid vue3-data-grid

vue3-ui-grid's Introduction

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');
```

vue3-ui-grid's People

Contributors

infusion-js avatar

Stargazers

 avatar

vue3-ui-grid's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.