vue-common-components

0.0.17 • Public • Published

vue-common-components

Global basic components for your Vue.js/Nuxt.js project

npm version npm downloads

 

Visit website and documentation.

 

Getting started

1. Install the dependency.

yarn add --dev vue-common-components
npm i vue-common-components

2. Init the plugin.

If you are using Vue.js:

// main.js
import Vue from 'vue'
import VueCommonComponents from 'vue-common-components'
Vue.use(VueCommonComponents, {
  // custom options here
})

If you are using Nuxt.js:
The plugin inits automatically, you just have to add it in nuxt config:

// nuxt.config.js
export default {
  plugins: [
    'node_modules/vue-common-components'
  ],
  commonComponents: {
    // custom options here
  }
}

3. Use common components everywhere in project:

// any component or page
<template>
  <div class="your-any-component">
    <common-button>Button</common-button>
  </div>
</template>
 
<script>
export default {
  // No need to import common components
}
</script>

 

Visit website and documentation.

 

Package Sidebar

Install

npm i vue-common-components

Weekly Downloads

1

Version

0.0.17

License

MIT

Unpacked Size

64.4 kB

Total Files

52

Last publish

Collaborators

  • gkshi