Skip to content

Instantly share code, notes, and snippets.

@happyDemon
Created March 5, 2017 07:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save happyDemon/bc8a6d1c1a48f8f817e3cfeb784a200e to your computer and use it in GitHub Desktop.
Save happyDemon/bc8a6d1c1a48f8f817e3cfeb784a200e to your computer and use it in GitHub Desktop.
Vue.js explained through Pokemon #5
import Vue from 'vue'
window.Vue = Vue;
window.Vuemit = require('vuemit');
// Import Velocity & its base animations
import 'velocity-animate'
import 'velocity-animate/velocity.ui'
// Import our custom transitions
import TransitionAnimations from './animations';
TransitionAnimations.register(Vue);
import Store from './store';
import App from './App.vue'
new Vue({
el: '#app',
store: Store,
render: h => h(App)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment