import Vue from 'vue';
import TagInput from "./components/TagInput.vue";
new Vue({
el: '#app',
components: {
TagInput
}
});