vue-java-tutorials/vue2-tutorials/single-file/demo2/src/main.js

17 lines
300 B
JavaScript
Raw Normal View History

import "animate.css";
2025-06-19 07:25:00 +08:00
import Vue from "vue";
2025-06-19 20:38:45 +08:00
import VueRouter from "vue-router";
2025-06-19 07:25:00 +08:00
import App from "./App.vue";
2025-06-19 20:38:45 +08:00
import router from "./router";
2025-06-19 07:54:16 +08:00
import store from "./store";
2025-06-18 21:48:34 +08:00
2025-06-19 07:25:00 +08:00
Vue.config.productionTip = false;
2025-06-18 21:48:34 +08:00
2025-06-19 20:38:45 +08:00
Vue.use(VueRouter);
2025-06-19 07:25:00 +08:00
new Vue({
render: (h) => h(App),
2025-06-19 07:54:16 +08:00
store,
2025-06-19 20:38:45 +08:00
router,
2025-06-19 07:25:00 +08:00
}).$mount("#app");