Skip to content

Instantly share code, notes, and snippets.

@sanath-kumar
Created July 19, 2018 12:21
Show Gist options
  • Select an option

  • Save sanath-kumar/f0d6797a0365b9f1ff41d4ad19b6b6d6 to your computer and use it in GitHub Desktop.

Select an option

Save sanath-kumar/f0d6797a0365b9f1ff41d4ad19b6b6d6 to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import App from './App.vue'
import Vuetify from 'vuetify'
import socketIO from 'vue-socket.io'
import 'vuetify/dist/vuetify.min.css'
import { store } from './store'
Vue.use(Vuetify);
Vue.use(socketIO, 'http://localhost:5000');
Vue.use(require('vue-moment'));
new Vue({
el: '#app',
store,
render: h => h(App)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment