# 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);
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
Name | Description | Type | Required |
---|---|---|---|
message | The message property that will be displayed | String | false |
All feedback and suggestions are welcome!
This is a open-source software licensed under the MIT license