保存进度!

This commit is contained in:
Kane Wang 2022-12-02 20:16:03 +08:00
parent febdc6c1f5
commit ace0699187
4 changed files with 26 additions and 6 deletions

1
node_modules/.package_versions.json generated vendored Normal file
View File

@ -0,0 +1 @@
{}

View File

@ -2,7 +2,7 @@
* @Author: Kane * @Author: Kane
* @Date: 2022-11-22 17:50:49 * @Date: 2022-11-22 17:50:49
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2022-11-29 20:32:41 * @LastEditTime: 2022-11-30 15:08:26
* @FilePath: \hello-cli\public\index.html * @FilePath: \hello-cli\public\index.html
* @Description: * @Description:
* *
@ -25,13 +25,14 @@
display: none; display: none;
} }
</style> </style>
<body> <body>
<noscript> <noscript>
<strong <strong>
>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't
work properly without JavaScript enabled. Please enable it to work properly without JavaScript enabled. Please enable it to
continue.</strong continue.
> </strong>
</noscript> </noscript>
<div id="app" v-cloak></div> <div id="app" v-cloak></div>
<!-- built files will be auto injected --> <!-- built files will be auto injected -->

View File

@ -2,7 +2,7 @@
* @Author: Kane * @Author: Kane
* @Date: 2022-11-22 17:50:49 * @Date: 2022-11-22 17:50:49
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2022-11-29 17:50:22 * @LastEditTime: 2022-12-02 16:59:09
* @FilePath: \hello-cli\src\App.vue * @FilePath: \hello-cli\src\App.vue
* @Description: * @Description:
* *

View File

@ -0,0 +1,18 @@
/*
* @Author: Kane
* @Date: 2022-12-02 16:09:08
* @LastEditors: Kane
* @LastEditTime: 2022-12-02 16:21:00
* @FilePath: \hello-cli\src\router\index.js
* @Description: 设置路由
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
import { createRouter, createWebHashHistory } from "vue-router";
const routes = [{ path: "/", component: undefined }];
export default createRouter({
history: createWebHashHistory(),
routes: routes,
});