做一些清理
This commit is contained in:
26
cli/hello-router/src/main.js
Normal file
26
cli/hello-router/src/main.js
Normal file
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2022-11-24 09:08:41
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2022-11-25 16:22:52
|
||||
* @FilePath: \hello-router\src\main.js
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
import { createApp } from "vue";
|
||||
// import { createRouter, createWebHashHistory } from "vue-router";
|
||||
|
||||
//引入组件
|
||||
import App from "./App.vue";
|
||||
// import { Header } from "./components/页面组件/Header.vue";
|
||||
// import { Main } from "./components/页面组件/Main.vue";
|
||||
// import { demo1 } from "./components/功能页面/demo-1.vue";
|
||||
// import { demo2 } from "./components/功能页面/demo-2.vue";
|
||||
|
||||
const app = createApp(App);
|
||||
// const routes = [
|
||||
// {path}
|
||||
// ];
|
||||
|
||||
app.mount("#app");
|
Reference in New Issue
Block a user