vue-template-plugin

0.1.0-beta.1 • Public • Published

<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

Package Sidebar

Install

npm i vue-template-plugin

Weekly Downloads

2

Version

0.1.0-beta.1

License

MIT

Unpacked Size

25.2 kB

Total Files

8

Last publish

Collaborators

  • coderdiaz