Created
July 19, 2018 12:21
-
-
Save sanath-kumar/f0d6797a0365b9f1ff41d4ad19b6b6d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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