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.

15 lines
245B

  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. if (!window.included) {
  4. window.included = true;
  5. Vue.use(require('vue-shortkey'))
  6. new Vue({
  7. el: '#app',
  8. render: h => h(App)
  9. })
  10. require('./mystyles.scss');
  11. }