Skip to content
This repository was archived by the owner on Mar 11, 2020. It is now read-only.

coderdiaz/vue-template-plugin

Repository files navigation

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

About

A template for create a Vue Plugin with Rollup

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published