npm.io
0.1.0-beta.1 • Published 7 years ago

vue-template-plugin

Licence
MIT
Version
0.1.0-beta.1
Deps
1
Size
25 kB
Vulns
1
Weekly
0

<vue-template-plugin>

A template for create a Vue Plugin with Rollup


Install/Usage

# Install with npm
$ npm i -S vue-template-plugin

# or yarn
$ yarn add vue-template-plugin
<div id="app">
  <HelloWorld :message="message" />
</div>

You can use Local Registration:

import { HelloWorld } from 'vue-template-plugin';
new Vue({
  el: '#app',
  data() {
    return {
      message: 'Hello World',
    };
  },
  components: {
    HelloWorld,
  },
});

or Global Registration:

import HelloWorld from 'vue-template-plugin';
Vue.use(HelloWorld);

// or with a custom component name
import { HelloWorld } from 'vue-template-plugin';
Vue.component('custom-hello-world', HelloWorld);

Usage in browser

In browser you can use Unpkg, Jsdelivr, CDN.js, etc.

# Unpkg
https://unpkg.com/vue-template-plugin@latest/dist/vue-template-plugin.js

# JSDelivr
https://cdn.jsdelivr.net/npm/vue-template-plugin@latest/dist/vue-template-plugin.min.js

Documentation

Props
Name Description Type Required
message The message property that will be displayed String false

Community

All feedback and suggestions are welcome!

License

This is a open-source software licensed under the MIT license

Keywords