2.1.0 • Published 6 years ago

@mkplace/mkplace-vue v2.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

mkplace-vue

Rollup badge Jest Vue Storybook Commitizen semantic-release Npm badge Build Status

A Vue.js 2.0 library project

Generated using vue-cli-template-library.

Installation

npm install mkplace-vue

mkplace-vue can be used as a module in both CommonJS and ES modular environments.

When in non-modular environment, mkplace-vue will register all the components to vue by itself.

ES6

//
// You can register a component manually
//
import { HelloWorld } from 'mkplace-vue';

export default {
  ...
  components: {
    HelloWorld
  },
  ...
};

//
// or register the whole module with vue
//
import ModuleLibrary from 'mkplace-vue';

// Install this library
Vue.use(ModuleLibrary);

CommonJS

//
// You can register a component manually
//
var Vue = require('vue');
var ModuleLibrary = require('mkplace-vue');

var YourComponent = Vue.extend({
  ...
  components: {
    'hello-world': ModuleLibrary.HelloWorld
  },
  ...
});

//
// or register the whole module with vue
//
var Vue = require('vue');
var ModuleLibrary = require('mkplace-vue');

// Install this library
Vue.use(ModuleLibrary);

Browser

<script src="path/to/vue/vue.min.js"></script>
<script src="path/to/mkplace-vue/dist/mkplace-vue.min.js"></script>
<!-- Components are registered globally -->

After that, you can use it in your templates:

<hello-world></hello-world>

Changelog

See the GitHub release history.

Contributing

See CONTRIBUTING.md.

2.1.0

6 years ago

2.0.9

6 years ago

2.0.8

6 years ago

2.0.7

6 years ago

2.0.6

6 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago