当前位置:   article > 正文

vue3+elementplus写一个简单首页_vue3+element-plus简单项目

vue3+element-plus简单项目

在使用Vue 3结合Element Plus框架开发首页时,您需要先搭建Vue 3项目,然后引入Element Plus库。以下是一个基本的步骤指导和代码示例,帮助您完成首页的开发。

  1. 创建Vue 3项目
    使用Vue CLI创建一个新的Vue 3项目:
npm install -g @vue/cli
vue create my-vue3-project
  • 1
  • 2
  1. 安装Element Plus
    进入项目目录,使用npm或yarn安装Element Plus:
cd my-vue3-project
npm install element-plus --save
# 或者使用yarn
yarn add element-plus
  • 1
  • 2
  • 3
  • 4
  1. 引入Element Plus
    在项目中引入Element Plus。在main.js文件中,将以下代码复制到其中:
import { createApp } from 'vue'
import App from './App.vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
const app = createApp(App)
app.use(ElementPlus)
app.mount('#app')
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  1. 编写首页
    在src/views目录下创建一个名为Home.vue的文件,然后将以下代码复制到其中:
<template>
  <el-container>
    <el-header>
      <h1>首页</h1>
    </el-header>
    <el-container>
      <el-aside width="300px">
        <el-menu>
          <el-menu-item index="1">菜单1</el-menu-item>
          <el-menu-item index="2">菜单2</el-menu-item>
          <el-menu-item index="3">菜单3</el-menu-item>
        </el-menu>
      </el-aside>
      <el-main>
        <h2>欢迎来到我的首页</h2>
      </el-main>
    </el-container>
  </el-container>
</template>
<script>
export default {
  name: 'Home'
}
</script>
<style scoped>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34

这个示例包含一个简单的布局,包括顶部导航栏、侧边栏和主内容区域。您可以根据需要修改样式和内容。
5. 配置路由
在src/router/index.js文件中,配置路由以显示首页:

import { createRouter, createWebHistory } from 'vue-router'
import Home from '../views/Home.vue'
const routes = [
  {
    path: '/',
    name: 'Home',
    component: Home
  }
]
const router = createRouter({
  history: createWebHistory(process.env.BASE_URL),
  routes
})
export default router
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

现在,当您访问项目时,首页将显示在浏览器中。您可以继续根据需求扩展和自定义首页。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/542615
推荐阅读
相关标签
  

闽ICP备14008679号