Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 545 Bytes

install.md

File metadata and controls

34 lines (24 loc) · 545 Bytes

Install

npm install gridjs-vue

Also available on unpkg and Skypack!

Component Registration

Local Registration

<script>
  import Grid from 'gridjs-vue'

  export default {
    components: {
      Grid
    }
  }
</script>

Global Registration

/* in `main.js` or wherever you specify your global components */
import { GridGlobal } from 'gridjs-vue'

Vue.use(GridGlobal)

< Back to contents