mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
13 lines
233 B
13 lines
233 B
import Vue from 'vue';
|
|
import vueDebounce from 'vue-debounce';
|
|
import Guideline from '../components/guideline.vue';
|
|
|
|
Vue.use(vueDebounce);
|
|
|
|
new Vue({
|
|
el: '#mail-app',
|
|
|
|
components: { Guideline },
|
|
|
|
template: '<Guideline />',
|
|
});
|