0.5.4 • Published 3 years ago

vue-cartkit-library v0.5.4

Weekly downloads
24
License
MIT
Repository
-
Last release
3 years ago

Vue Cartkit Library

An awesome vue component library built with Vue CLI 3.

Usage

In a module system

Install the library with NPM:

npm install vue-cartkit-library

Then register the library as a plugin to globally install all components:

import VueCartkitLibrary from 'vue-cartkit-library'

Vue.use(VueCartkitComponents)

Or, import components individually for local registration:

import { SalesPop } from 'vue-cartkit-library'

export default {
  components: { SalesPop }
}

Individually packaged components

If you only want to use a small subset of components, only import individually packaged components to reduce the size of your application:

import SalesPop from 'vue-cartkit-library.SalesPop'

Directly in the browser

Drop the library in with a <script> tag alongside Vue to globally install all components:

<div id="app">
  <hello-world></hello-world>
</div>

<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vue-cartkit-library"></script>
<script>
  new Vue({ el: '#app' })
</script>

Or, if you only want to use a small subset of components, drop them in individually:

<div id="app">
  <hello-world></hello-world>
</div>

<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vue-cartkit-library/SalesPop"></script>
<script>
  new Vue({ el: '#app' })
</script>
0.5.4

3 years ago

0.5.3

3 years ago

0.5.2

4 years ago

0.4.14

4 years ago

0.4.12

4 years ago

0.4.10

4 years ago

0.4.11

4 years ago

0.4.9

4 years ago

0.4.8

4 years ago

0.4.7

4 years ago

0.4.6

4 years ago

0.4.5

4 years ago

0.4.4

4 years ago

0.4.3

4 years ago

0.4.2

4 years ago

0.4.1

4 years ago

0.4.0

4 years ago

0.3.1

4 years ago

0.3.0

4 years ago

0.2.0

4 years ago

0.1.11

4 years ago

0.1.10

4 years ago

0.1.7

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago