Créez les étapes détaillées du projet vue2 et les solutions d'erreur de 0 à 1

1. Étapes pour créer un projet vue2 :

1. Vérifier l'environnement du nœud

node -v

2. Créez un nom de projet

vue create 项目名称

La première configuration par défaut par défaut
Sélectionnez manuellement les fonctionnalités de configuration personnalisée

? Please pick a preset: Manually select features
? Check the features needed for your project: Choose Vue version, Babel, Linter
? Choose a version of Vue.js that you want to start the project with 2.x
? Pick a linter / formatter config: Basic
? Pick additional lint features: Lint on save
? Where do you prefer placing config for Babel, ESLint, etc.? In dedicated config files
? Save this as a preset for future projects? No
$ cd kr
$ npm run serve

Cette étape signifie que la création est réussie ! Exécutez simplement la commande

Deux, composant elementUI

1. Disposition commune

<template>
  <div class="about">
    <el-container>
      <el-header>Header</el-header>
      <el-container>
        <el-aside width="200px">Aside</el-aside>
        <el-main>Main</el-main>
      </el-container>
      <el-footer>Footer</el-footer>
    </el-container>
  </div>
</template>
<style>
.el-header,
.el-footer {
    
    
  background-color: #b3c0d1;
  color: #333;
  text-align: center;
  line-height: 60px;
}

.el-aside {
    
    
  background-color: #d3dce6;
  color: #333;
  text-align: center;
  line-height: 200px;
  height: 500px;
}

.el-main {
    
    
  background-color: #e9eef3;
  color: #333;
  text-align: center;
  line-height: 160px;
}

body>.el-container {
    
    
  margin-bottom: 40px;
}
</style>

insérez la description de l'image ici

Je suppose que tu aimes

Origine blog.csdn.net/weixin_43778617/article/details/130681940
conseillé
Classement