10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
import Vue from 'vue';
|
|
import TagInput from "./components/TagInput.vue";
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
components: {
|
|
TagInput
|
|
}
|
|
});
|