vue-template-plugin
v0.1.0-beta.1
Published
A template for create a Vue Plugin with Rollup
Downloads
1
Maintainers
Readme
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