将vue/cli生成的无用代码删除

1.App.vue

  1. <template>
  2. <router-view />
  3. </template>
  4. <style lang="scss"></style>

2.删除 views 文件夹下的所有 .vue 文件

3.删除已添加的routes配置

  1. import { createRouter, createWebHashHistory } from 'vue-router'
  2. const routes = []
  3. const router = createRouter({
  4. history: createWebHashHistory(),
  5. routes
  6. })
  7. export default router

4.将components下的组件全部删除