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.

16 lines
335 B

  1. import Vue from 'vue';
  2. import vueDebounce from 'vue-debounce';
  3. import SequenceLabeling from '../components/sequence_labeling.vue';
  4. Vue.use(vueDebounce);
  5. Vue.use(require('vue-shortkey'), {
  6. prevent: ['input', 'textarea'],
  7. });
  8. new Vue({
  9. el: '#mail-app',
  10. components: { SequenceLabeling },
  11. template: '<SequenceLabeling />',
  12. });