1.1.1 • Published 5 years ago

@trendyol-pim/vue-components v1.1.1

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

pim-vue-components

Vue component library for Trendyol PIM frontend.

Installation

Directly in the browser

Drop the library in with a <script> tag alongside Vue:

<div id="app">
<!-- ... use components here ... -->
</div>

<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/pim-vue-components"></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">
<!-- ... use component here ... -->
</div>

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

In a module system

Install the library with NPM:

npm install pim-vue-components

Then either import the library and either globally register all components with:

import PimVueComponents from 'pim-vue-components'

Vue.use(PimVueComponents)

or import and locally register a single component with:

import { HelloA } from 'pim-vue-components'

export default {
components: { PimVueComponents }
}

Individually packaged components

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

import HelloA from 'hello-vue-components/HelloA'
import HelloB from 'hello-vue-components/HelloB'