Timers and other features for Heroes of the Storm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
534 B

  1. // The Vue build version to load with the `import` command
  2. // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
  3. import Vue from 'vue'
  4. import App from './App'
  5. import router from './router'
  6. import { longClickDirective } from 'vue-long-click'
  7. import VueI18n from 'vue-i18n'
  8. Vue.config.productionTip = false
  9. Vue.use(VueI18n)
  10. Vue.directive('longclick', longClickDirective({delay: 750, interval: 0}))
  11. /* eslint-disable no-new */
  12. new Vue({
  13. el: '#app',
  14. router,
  15. template: '<App/>',
  16. components: { App }
  17. })