0.6.0 • Published 2 years ago

mekar-library v0.6.0

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

Mekar Library

Installation

Install the library via NPM

yarn add mekar-library

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 Lib from 'mekar-library'

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

Selective Import

With this kind of import, you will include the whole bundle of the library, unless your app have treeshake config.

// components
import { Button } from 'mekar-library'

Contribution

Everyone is welcome to contribute to Mekar Library

0.6.0

2 years ago

0.5.0

2 years ago

0.4.0

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago