12 lines
170 B
JavaScript
12 lines
170 B
JavaScript
|
import Vue from "vue";
|
||
|
import Install from "./components/Install";
|
||
|
import "./Axios";
|
||
|
|
||
|
new Vue({
|
||
|
el: "#app",
|
||
|
|
||
|
components: {
|
||
|
Install,
|
||
|
},
|
||
|
});
|