VueJS Getting Started

Let's get started with VueJS!

by wostex

HTML

<script src="https://unpkg.com/vue/dist/vue.js"></script>

<div id="app">
</div>

JavaScript

const auth = {
    setToken : () => {
			console.log('inside setToken');
    },
    install: function(){
      Object.defineProperty(Vue.prototype, '$auth', {
        get () { return auth }
      })
    }
};



Vue.use(auth);

new Vue({
	el: '#app',
	mounted() {
  	this.$auth.setToken();
  }
});