Vue3.0+Element-plus项目框架搭建(三):初始化项目结构

`在创建项目的同时,也生成了很多无用的代码,那么需要去除掉这些无用的代码。

按照如下方式初始化项目代码结构:

  1. App.vue 初始化代码如下:
<!--
 * @Author: longerJue
-->
<template>
  <router-view />
</template>

<style lang="scss"></style>

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

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

  3. router/index.js 中初始化代码如下:

/*
 * @Author: longerJue
 */
import { createRouter, createWebHashHistory } from "vue-router";

const routes = [];

const router = createRouter({
  history: createWebHashHistory(),
  routes,
});

export default router;

  1. npm run serve运行起来,浏览器中访问,控制台中未报错即正常:
    Vue3.0+Element-plus项目框架搭建(三):初始化项目结构
上一篇:CString与const char*互转 深入详解


下一篇:node+mongoose+transaction(事务处理)