0.4.0 • Published 2 years ago

mekar-table v0.4.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Mekar Table

Installation

Install the component via NPM

yarn add mekar-table

How to Use

Import as Global Component

With this kind of import, you will include the whole bundle of the library, but you can use all components directly in Vue Instance.

import { createApp } from 'vue'
import App from './App.vue'

// components
import Table from 'mekar-table'

const app = createApp(App)
app.use(Table)
app.mount('#app')

Default Import

With this kind of import, you will only include component that've been imported.

// components
import Table from 'mekar-table'

Contribution

Everyone is welcome to contribute to Mekar Library